From 659e4909c58eaeb6be9caf685251aa5d7566b20e Mon Sep 17 00:00:00 2001 From: mshanemc Date: Tue, 6 Aug 2024 18:29:32 -0500 Subject: [PATCH] refactor: back to original retries --- src/util/lockRetryOptions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/lockRetryOptions.ts b/src/util/lockRetryOptions.ts index 509d4870c..20e836c66 100644 --- a/src/util/lockRetryOptions.ts +++ b/src/util/lockRetryOptions.ts @@ -10,5 +10,5 @@ export const lockOptions = { stale: 10_000 }; export const lockRetryOptions = { ...lockOptions, - retries: { retries: 50, maxTimeout: 1000, factor: 2 }, + retries: { retries: 10, maxTimeout: 1000, factor: 2 }, };