From 7a8f96d105999a2d611fe405bd3fae11c3932cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Stru=C3=9F?= Date: Mon, 14 Dec 2020 07:45:19 +0100 Subject: [PATCH] Fixed comment about websocket timeout in allocate.go --- allocate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allocate.go b/allocate.go index 781e936f..ce647255 100644 --- a/allocate.go +++ b/allocate.go @@ -215,7 +215,7 @@ func (a *ExecAllocator) Allocate(ctx context.Context, opts ...BrowserOption) (*B // Chrome will sometimes fail to print the websocket, or run for a long // time, without properly exiting. To avoid blocking forever in those - // cases, give up after ten seconds. + // cases, give up after twenty seconds. const wsURLReadTimeout = 20 * time.Second var wsURL string