Skip to content

Commit 970d71f

Browse files
authored
Fix frozen string literal issue
1 parent 7053afa commit 970d71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fog/aws/signaturev4.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def canonical_headers(headers)
109109
canonical_headers = ''
110110

111111
for key in headers.keys.sort_by {|k| k.to_s.downcase}
112-
canonical_headers << "#{key.to_s.downcase}:#{headers[key].to_s.strip}\n"
112+
canonical_headers += "#{key.to_s.downcase}:#{headers[key].to_s.strip}\n"
113113
end
114114
canonical_headers
115115
end

0 commit comments

Comments
 (0)