Skip to content

Commit 95b1503

Browse files
authored
Disable S3 Signature v4 Streaming by default (#719)
The STREAMING-AWS4-HMAC-SHA256-PAYLOAD streaming method is not widely implemented in AWS SDKs, and many third-party S3 implementations don't support this. S3 multipart uploads are a more standard way of handling chunked transfers in any case.
1 parent a8518f0 commit 95b1503

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fog/aws/storage.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def initialize(options={})
559559
@persistent = options.fetch(:persistent, false)
560560
@acceleration = options.fetch(:acceleration, false)
561561
@signature_version = options.fetch(:aws_signature_version, 4)
562-
@enable_signature_v4_streaming = options.fetch(:enable_signature_v4_streaming, true)
562+
@enable_signature_v4_streaming = options.fetch(:enable_signature_v4_streaming, false)
563563
validate_signature_version!
564564
@path_style = options[:path_style] || false
565565

0 commit comments

Comments
 (0)