We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8b4511 commit fef1515Copy full SHA for fef1515
src/datastore/file/EncryptedFileStore.ts
@@ -10,7 +10,7 @@ import { DataStore } from '../DataStore';
10
import { decrypt, encrypt } from './Encryption';
11
12
const LOCK_OPTIONS_SYNC: LockOptions = { stale: 10_000 };
13
-const LOCK_OPTIONS: LockOptions = { ...LOCK_OPTIONS_SYNC, retries: { retries: 15, minTimeout: 10, maxTimeout: 500 } };
+const LOCK_OPTIONS: LockOptions = { ...LOCK_OPTIONS_SYNC, retries: { retries: 20, minTimeout: 50, maxTimeout: 1000 } };
14
15
export class EncryptedFileStore implements DataStore {
16
private readonly log: Logger;
0 commit comments