We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92a9607 commit c1b85ceCopy full SHA for c1b85ce
ālib/rack/openid.rb
@@ -134,7 +134,7 @@ def begin_authentication(env, qs)
134
135
url = open_id_redirect_url(req, oidreq, params)
136
return redirect_to(url)
137
- rescue ::OpenID::OpenIDError, Timeout::Error => e
+ rescue ::OpenID::OpenIDError, ::Timeout::Error
138
env[RESPONSE] = MissingResponse.new
139
return @app.call(env)
140
end
@@ -302,7 +302,7 @@ def default_store
302
303
def timeout_protection_from_identity_server
304
yield
305
- rescue Timeout::Error
+ rescue ::Timeout::Error
306
TimeoutResponse.new
307
308
0 commit comments