Skip to content

Commit b102051

Browse files
committed
Not raising when using JwtConnection
1 parent 2cf86e3 commit b102051

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

arangoasync/connection.py

-2
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ async def send_request(self, request: Request) -> Response:
424424
# If the token has expired, refresh it and retry the request
425425
await self.refresh_token()
426426
resp = await self.process_request(request)
427-
self.raise_for_status(request, resp)
428427
return resp
429428

430429

@@ -509,7 +508,6 @@ async def send_request(self, request: Request) -> Response:
509508
self.compress_request(request)
510509

511510
resp = await self.process_request(request)
512-
self.raise_for_status(request, resp)
513511
return resp
514512

515513

0 commit comments

Comments
 (0)