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 20e0278 commit 3f1bc7fCopy full SHA for 3f1bc7f
test/integration/helpers.py
@@ -36,11 +36,9 @@ def retry_sending_request(
36
raise Exception(
37
"Api Error: Failed after all retry attempts"
38
) from e
39
- time.sleep(backoff)
40
wait = backoff * attempt + random.uniform(0, 2)
41
print(f"Attempt {attempt} failed ({e}), retrying in {wait:.1f}s...")
42
time.sleep(wait)
43
- return None
44
45
46
def send_request_when_resource_available(
0 commit comments