diff --git a/src/backend/admin_ops/__init__.py b/src/backend/admin_ops/__init__.py index 1869d4a0..cd88dff5 100644 --- a/src/backend/admin_ops/__init__.py +++ b/src/backend/admin_ops/__init__.py @@ -62,7 +62,7 @@ def signed_request( async def send_request(req: httpx.Request) -> httpx.Response: - async with httpx.AsyncClient() as client: + async with httpx.AsyncClient(verify=False) as client: res: httpx.Response = await client.send(req) if not res.is_success: raise error_from_response(res)