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
***Opcionals Parameters:** The params timeout, retry_strategy and headers are opcionals.
82
+
***Default Params Value:** By default the quantity of retries is 3 and the time between retries is 1 second, but you can define manually.
83
+
***Max Of Retries:** For security of API Server there is a limit for quantity of retries, actually this value is 5, this value is defined in lib constant. You can inform any value in RETRIES param, but the lib only will try 5x.
84
+
***Exponential Retry Strategy:** The increment of time between retries is time passed in **initial_delay** param * 2 * the retry_number, e.g with initial_delay=1
85
+
86
+
RetryNumber | WaitingTime
87
+
------------ | -----------
88
+
1 | 1s
89
+
2 | 2s
90
+
3 | 4s
91
+
4 | 6s
92
+
5 | 8s
93
+
***Linear Retry Strategy:** The increment of time between retries is time passed in **initial_delay**
0 commit comments