From b4ef31818264b4aaefd06b088727420297a4e1cc Mon Sep 17 00:00:00 2001 From: j Date: Sat, 23 Mar 2024 14:01:05 -0400 Subject: [PATCH] updated Exponential fallback logic to retry for up to 10 times 1 hour (68.2 minutes) --- src/rdrama/session/SessionManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rdrama/session/SessionManager.ts b/src/rdrama/session/SessionManager.ts index 5335e88..4dd79b2 100644 --- a/src/rdrama/session/SessionManager.ts +++ b/src/rdrama/session/SessionManager.ts @@ -40,7 +40,7 @@ class SessionManager { this.wrapAxiosInstance(this.axiosInstance); axiosRetry(this.axiosInstance, { - retries: 3, + retries: 10, retryDelay: this.retryDelayStrategy, retryCondition: this.retryCondition, });