bump response timeout

This commit is contained in:
Abi Raja 2024-01-05 06:13:58 -08:00
parent 56c90d9c83
commit c70e4958b9

View File

@ -18,6 +18,6 @@ async def does_user_have_subscription_credits(
"Authorization": f"Bearer {auth_token}", "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()) parsed_response = SubscriptionCreditsResponse.parse_obj(response.json())
return parsed_response return parsed_response