Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/s3/s3_interface.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ def canonical_string(method, path, headers={}, expires=nil) # :nodoc:
out_string << (key[/^#{AMAZON_HEADER_PREFIX}/o] ? "#{key}:#{value}\n" : "#{value}\n")
end
# ignore everything after the question mark...
out_string << path.gsub(/\?.*$/, '')
#out_string << path.gsub(/\?.*$/, '')

# To allow passing query parameters such as response-content-disposition
out_string << path

# ...unless there is an acl or torrent parameter
out_string << '?acl' if path[/[&?]acl($|&|=)/]
out_string << '?policy' if path[/[&?]policy($|&|=)/]
Expand Down