Skip to content

Commit

Permalink
exp
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Dec 6, 2024
1 parent 5b3a540 commit 24c6df9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions h3daemon/h3daemon/polling.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import functools

from tenacity import Retrying, retry, stop_after_delay, wait_fixed, wait_random
from tenacity import Retrying, retry, stop_after_delay, wait_exponential

STOP = stop_after_delay(10)
WAIT = wait_fixed(0.1) + wait_random(0, 0.1)
WAIT = wait_exponential()


def polling(func):
Expand Down

0 comments on commit 24c6df9

Please sign in to comment.