Skip to content

Commit

Permalink
fix(python-sdk): not properly using the retry defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
rhamzeh committed Mar 7, 2025
1 parent 16273c6 commit d2339d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class RetryParams:
:param min_wait_in_ms: Minimum wait (in ms) between retry
"""

def __init__(self, max_retry=3, min_wait_in_ms=100):
def __init__(self, max_retry={{{defaultMaxRetry}}}, min_wait_in_ms={{{defaultMinWaitInMs}}}):
self._max_retry = max_retry
self._min_wait_in_ms = min_wait_in_ms

Expand Down

0 comments on commit d2339d8

Please sign in to comment.