From 8d0766eb3eb33327437cf6ecd46ab2d836b264c8 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Tue, 12 Sep 2017 10:23:58 -0700 Subject: [PATCH] Retry connection for longer (#21) --- chrome-launcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome-launcher.ts b/chrome-launcher.ts index adff13b3a..b89bcbcf6 100644 --- a/chrome-launcher.ts +++ b/chrome-launcher.ts @@ -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() {