Skip to content

Commit

Permalink
Retry connection for longer (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish authored and brendankenny committed Sep 12, 2017
1 parent 52cb50a commit 8d0766e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome-launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class Launcher {
this.chromePath = this.opts.chromePath;
this.enableExtensions = defaults(this.opts.enableExtensions, false);
this.connectionPollInterval = defaults(this.opts.connectionPollInterval, 500);
this.maxConnectionRetries = defaults(this.opts.maxConnectionRetries, 10);
this.maxConnectionRetries = defaults(this.opts.maxConnectionRetries, 50);
}

private get flags() {
Expand Down

0 comments on commit 8d0766e

Please sign in to comment.