From c70e4958b90d27b52e4c0acc1574fde24910cd86 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Fri, 5 Jan 2024 06:13:58 -0800 Subject: [PATCH] bump response timeout --- backend/routes/saas_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/saas_utils.py b/backend/routes/saas_utils.py index cf6d6ac..c39124a 100644 --- a/backend/routes/saas_utils.py +++ b/backend/routes/saas_utils.py @@ -18,6 +18,6 @@ async def does_user_have_subscription_credits( "Authorization": f"Bearer {auth_token}", } - response = await client.post(url, headers=headers) + response = await client.post(url, headers=headers, timeout=60) parsed_response = SubscriptionCreditsResponse.parse_obj(response.json()) return parsed_response