Skip to content

Commit 3ad2a93

Browse files
authored
Fix frozen string literal issue (#709)
1 parent 7053afa commit 3ad2a93

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
@@ -106,7 +106,7 @@ def canonical_query_string(query)
106106
end
107107

108108
def canonical_headers(headers)
109-
canonical_headers = ''
109+
canonical_headers = +''
110110

111111
for key in headers.keys.sort_by {|k| k.to_s.downcase}
112112
canonical_headers << "#{key.to_s.downcase}:#{headers[key].to_s.strip}\n"

0 commit comments

Comments
 (0)