Skip to content
Snippets Groups Projects

Increase proxy request timeout

Merged Karim Ahmed requested to merge fix/increase_request_timeout into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -50,7 +50,7 @@ class XFELOauthClient:
self.scope = scope
self.token_url = token_url
self.http_client = AsyncHTTPClient()
self.http_client = AsyncHTTPClient(defaults=dict(request_timeout=120))
self.oauth_client = BackendApplicationClient(client_id, scope=scope)
async def get_token(self):
Loading