Skip to content

Commit

Permalink
fix: corrected backoff on exception
Browse files Browse the repository at this point in the history
  • Loading branch information
MountainGod2 committed Apr 15, 2024
1 parent 245662c commit ef2a686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chaturbate_poller/chaturbate_poller.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ async def __aexit__(
wait_gen=constant,
interval=2,
jitter=None,
exception=(httpx.ReadError, httpx.HTTPStatusError),
exception=httpx.ReadError,
max_tries=10,
on_giveup=giveup_handler,
on_backoff=backoff_handler,
Expand Down

0 comments on commit ef2a686

Please sign in to comment.