lib/rack/oauth2/access_token/mtls.rb in rack-oauth2-2.0.0 vs lib/rack/oauth2/access_token/mtls.rb in rack-oauth2-2.0.1
- old
+ new
@@ -5,11 +5,11 @@
attr_required :private_key, :certificate
def initialize(attributes = {})
super
self.token_type = :bearer
- httpclient.ssl_config.client_key = private_key
- httpclient.ssl_config.client_cert = certificate
+ httpclient.ssl.client_key = private_key
+ httpclient.ssl.client_cert = certificate
end
end
end
end
end