Skip to content

Commit

Permalink
Fix frozen string literal issue (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaadow committed Jun 11, 2024
1 parent 7053afa commit 3ad2a93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fog/aws/signaturev4.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def canonical_query_string(query)
end

def canonical_headers(headers)
canonical_headers = ''
canonical_headers = +''

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

0 comments on commit 3ad2a93

Please sign in to comment.