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 2aebf68 commit c146e86Copy full SHA for c146e86
src/server/api/memobase_server/auth/admin_api.py
@@ -11,7 +11,7 @@ async def get_project_usage(project_id: str) -> Promise[BillingData]:
11
async with AsyncClient(
12
base_url=ADMIN_URL, headers={"Authorization": f"Bearer {ADMIN_TOKEN}"}
13
) as client:
14
- response = await client.get(f"/api/v1/billing/project/{project_id}")
+ response = await client.get(f"/api/v1/billing/project/{project_id}", timeout=10)
15
16
if response.status_code != 200:
17
return Promise.reject(
0 commit comments