Skip to content

Commit 4889e7e

Browse files
Robbie1977claude
andcommitted
fix: increase retry backoff to 120s between retries
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6ddba16 commit 4889e7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vfbterms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def create_session():
4242
session = requests.Session()
4343
retry = Retry(
4444
total=2,
45-
backoff_factor=2,
45+
backoff_factor=120,
4646
status_forcelist=[500, 502, 503, 504],
4747
)
4848
adapter = HTTPAdapter(max_retries=retry, pool_connections=10, pool_maxsize=10)

0 commit comments

Comments
 (0)