updated Exponential fallback logic to retry for up to 10 times 1 hour (68.2 minutes)

master
j 2024-03-23 14:01:05 -04:00
parent ecd8df3ca9
commit b4ef318182
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class SessionManager {
this.wrapAxiosInstance(this.axiosInstance);
axiosRetry(this.axiosInstance, {
retries: 3,
retries: 10,
retryDelay: this.retryDelayStrategy,
retryCondition: this.retryCondition,
});