You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to override retry_limit with connection_retries to halt the connection attempts with limited no of time and blow up in case of any issue, due to improper merging, the connection_retires (limited number of attempts) never sets and the program continues to run until default retry_limit(mostly 200) causing user to hold for a longer period of time.
To Reproduce
Steps to reproduce the behavior:
Pass an incorrect password in the bootstrap command.
Describe the bug
While trying to override
retry_limit
withconnection_retries
to halt the connection attempts with limited no of time and blow up in case of any issue, due to improper merging, theconnection_retires
(limited number of attempts) never sets and the program continues to run until defaultretry_limit
(mostly 200) causing user to hold for a longer period of time.To Reproduce
Steps to reproduce the behavior:
Pass an incorrect password in the bootstrap command.
Expected behavior
It should raise an error after a few failed attempts to connect.
Version Information:
Additional context
As per the analysis, this can easily be fixed by correcting the merge order in opts in the following way.
The text was updated successfully, but these errors were encountered: