Skip to content

Commit 52eac7b

Browse files
fix(shared-log): increase waitForReplicator timeout
Increase default waitForReplicator timeout to reduce CI flakes when peer maturity requires more than 9s.
2 parents 2ed894b + 11ea82e commit 52eac7b

File tree

1 file changed

+1
-1
lines changed
  • packages/programs/data/shared-log/src

1 file changed

+1
-1
lines changed

packages/programs/data/shared-log/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ export type SharedLogOptions<
376376
};
377377

378378
export const DEFAULT_MIN_REPLICAS = 2;
379-
export const WAIT_FOR_REPLICATOR_TIMEOUT = 9000;
379+
export const WAIT_FOR_REPLICATOR_TIMEOUT = 20000;
380380
export const WAIT_FOR_ROLE_MATURITY = 5000;
381381
export const WAIT_FOR_REPLICATOR_REQUEST_INTERVAL = 1000;
382382
export const WAIT_FOR_REPLICATOR_REQUEST_MIN_ATTEMPTS = 3;

0 commit comments

Comments
 (0)