Skip to content

Commit a208510

Browse files
Fix DEFAULT_MAX_RETRIES value from 0 to 2 (#117)
1 parent e50809c commit a208510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agentex/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# default timeout is 1 minute
99
DEFAULT_TIMEOUT = httpx.Timeout(timeout=300, connect=5.0)
10-
DEFAULT_MAX_RETRIES = 0
10+
DEFAULT_MAX_RETRIES = 2
1111
DEFAULT_CONNECTION_LIMITS = httpx.Limits(max_connections=1000, max_keepalive_connections=1000)
1212

1313
INITIAL_RETRY_DELAY = 0.5

0 commit comments

Comments
 (0)