Skip to content

Commit

Permalink
Increased the number of retry attempts allowed (#486)
Browse files Browse the repository at this point in the history
Updated the number of attempts allowed
  • Loading branch information
jprakash-db authored Jan 7, 2025
1 parent f9d6ef1 commit 97b6392
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 97b6392

Please sign in to comment.