Skip to content

Commit 25675cf

Browse files
authored
Add back Signer.use_crt? to fix backwards compatability break. (#3108)
1 parent 6c3bb68 commit 25675cf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

gems/aws-sigv4/lib/aws-sigv4/signer.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,13 @@ def presigned_url_expiration(options, expiration, datetime)
779779
end
780780

781781
class << self
782+
783+
# Kept for backwards compatability
784+
# Always return false since we are not using crt signing functionality
785+
def use_crt?
786+
false
787+
end
788+
782789
# @api private
783790
def uri_escape_path(path)
784791
path.gsub(/[^\/]+/) { |part| uri_escape(part) }

0 commit comments

Comments
 (0)