Skip to content

Commit

Permalink
Merge pull request s3gw-tech#269 from jecluis/wip-admin-ops-no-verify
Browse files Browse the repository at this point in the history
  • Loading branch information
votdev authored Oct 5, 2023
2 parents 1491e00 + 4a59061 commit 5b0dc2b
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 5b0dc2b

Please sign in to comment.