Skip to content

Commit

Permalink
Update http module
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Oct 5, 2023
1 parent 446387e commit d996fe0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions reportportal_client/aio/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,9 @@ async def __request(
) -> ClientResponse:
"""Make a request and retry if necessary.
The method uses aiohttp.ClientSession.request() method and bypass all arguments to it, so
please refer it for detailed argument description. The method retries requests depending on error
class and retry number. For no-retry errors, such as 400 Bad Request it just returns result, for cases
where it's reasonable to retry it does it in exponential manner.
The method retries requests depending on error class and retry number. For no-retry errors, such as
400 Bad Request it just returns result, for cases where it's reasonable to retry it does it in
exponential manner.
"""
result = None
exceptions = []
Expand Down

0 comments on commit d996fe0

Please sign in to comment.