Skip to content

Commit 76dd347

Browse files
committed
Uncomment retryStrategy in config to enable custom retry logic
1 parent a8d51c7 commit 76dd347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ 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),
3535
},
3636
},
3737
};

0 commit comments

Comments
 (0)