Skip to content

Commit

Permalink
Decrease max retry time to three seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
code-asher committed Apr 11, 2019
1 parent 7047be8 commit 8f62b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ide/src/retry.ts
Expand Up @@ -75,7 +75,7 @@ export class Retry {

// Times are in seconds.
private readonly retryMinDelay = 1;
private readonly retryMaxDelay = 10;
private readonly retryMaxDelay = 3;
private readonly maxImmediateRetries = 5;
private readonly retryExponent = 1.5;
private blocked: string | boolean | undefined;
Expand Down

0 comments on commit 8f62b2b

Please sign in to comment.