We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e58abd commit 5709869Copy full SHA for 5709869
1 file changed
hotdata/_auth.py
@@ -60,7 +60,7 @@
60
_MAX_ATTEMPTS = 3 # one initial attempt + up to two retries
61
_BACKOFF_BASE = 0.1 # seconds -- first retry waits ~this, doubling thereafter
62
_BACKOFF_MAX = 2.0 # cap on a single backoff so a flapping host can't stall us
63
-_BACKOFF_JITTER = 0.5 # +/- fraction of jitter added to spread retries out
+_BACKOFF_JITTER = 0.5 # additive jitter fraction (delay in [base, 1.5*base]) to spread retries out
64
65
# Env var that disables exchange entirely. Used as a hard escape hatch during
66
# the rollout window and for local/dev setups. Only affirmative values opt out
0 commit comments