Skip to content

Commit

Permalink
Updated the number of attempts allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
jprakash-db committed Jan 7, 2025
1 parent f9d6ef1 commit 1cc4471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/databricks/sql/thrift_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
_retry_policy = { # (type, default, min, max)
"_retry_delay_min": (float, 1, 0.1, 60),
"_retry_delay_max": (float, 30, 5, 3600),
"_retry_stop_after_attempts_count": (int, 5, 1, 60),
"_retry_stop_after_attempts_count": (int, 30, 1, 60),
"_retry_stop_after_attempts_duration": (float, 900, 1, 86400),
"_retry_delay_default": (float, 5, 1, 60),
}
Expand Down

0 comments on commit 1cc4471

Please sign in to comment.