Skip to content

Commit

Permalink
backend/admin_ops: don't verify certs on send request
Browse files Browse the repository at this point in the history
Fixes: aquarist-labs/s3gw#737

Signed-off-by: Joao Eduardo Luis <[email protected]>
  • Loading branch information
jecluis committed Oct 4, 2023
1 parent bed1d90 commit 4a59061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/admin_ops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4a59061

Please sign in to comment.