Skip to content

Commit 4dcac19

Browse files
committed
Disable retryStrategy in config and update to null
1 parent 4565ed4 commit 4dcac19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export default (): ConfigInstance => {
3131
showFriendlyErrorStack: true,
3232
maxRetriesPerRequest: null,
3333
enableOfflineQueue: false,
34-
retryStrategy: (times) => Math.min(times * 1_000, 10_000),
34+
// retryStrategy: (times) => Math.min(times * 1_000, 10_000),
35+
retryStrategy: null,
3536
},
3637
},
3738
};

0 commit comments

Comments
 (0)