Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fb1dacf

Browse files
stainless-app[bot]stainless-bot
authored andcommittedOct 7, 2024·
fix(client): avoid OverflowError with very large retry counts (#1779)
1 parent aa2e25f commit fb1dacf

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎src/openai/_base_client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,8 @@ def _calculate_retry_timeout(
690690
if retry_after is not None and 0 < retry_after <= 60:
691691
return retry_after
692692

693-
nb_retries = max_retries - remaining_retries
693+
# Also cap retry count to 1000 to avoid any potential overflows with `pow`
694+
nb_retries = min(max_retries - remaining_retries, 1000)
694695

695696
# Apply exponential backoff, but not more than the max.
696697
sleep_seconds = min(INITIAL_RETRY_DELAY * pow(2.0, nb_retries), MAX_RETRY_DELAY)

‎tests/test_client.py

+2
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,7 @@ class Model(BaseModel):
697697
[3, "", 0.5],
698698
[2, "", 0.5 * 2.0],
699699
[1, "", 0.5 * 4.0],
700+
[-1100, "", 7.8], # test large number potentially overflowing
700701
],
701702
)
702703
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))
@@ -1553,6 +1554,7 @@ class Model(BaseModel):
15531554
[3, "", 0.5],
15541555
[2, "", 0.5 * 2.0],
15551556
[1, "", 0.5 * 4.0],
1557+
[-1100, "", 7.8], # test large number potentially overflowing
15561558
],
15571559
)
15581560
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))

0 commit comments

Comments
 (0)