Skip to content

Commit 97b6392

Browse files
authored
Increased the number of retry attempts allowed (#486)
Updated the number of attempts allowed
1 parent f9d6ef1 commit 97b6392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sql/thrift_backend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
_retry_policy = { # (type, default, min, max)
6868
"_retry_delay_min": (float, 1, 0.1, 60),
6969
"_retry_delay_max": (float, 30, 5, 3600),
70-
"_retry_stop_after_attempts_count": (int, 5, 1, 60),
70+
"_retry_stop_after_attempts_count": (int, 30, 1, 60),
7171
"_retry_stop_after_attempts_duration": (float, 900, 1, 86400),
7272
"_retry_delay_default": (float, 5, 1, 60),
7373
}

0 commit comments

Comments
 (0)