Skip to content

Commit 9680f33

Browse files
committed
Decrease max retry time to three seconds
1 parent 627182e commit 9680f33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ide/src/retry.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class Retry {
7575

7676
// Times are in seconds.
7777
private readonly retryMinDelay = 1;
78-
private readonly retryMaxDelay = 10;
78+
private readonly retryMaxDelay = 3;
7979
private readonly maxImmediateRetries = 5;
8080
private readonly retryExponent = 1.5;
8181
private blocked: string | boolean | undefined;

0 commit comments

Comments
 (0)