From 56504f73e63e48212cdd0b23faf57a46e8a40555 Mon Sep 17 00:00:00 2001 From: Connor Clark Date: Wed, 7 Nov 2018 16:19:59 -0800 Subject: [PATCH] increase generic protocol timeout to 10s (#6475) --- lighthouse-core/gather/driver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse-core/gather/driver.js b/lighthouse-core/gather/driver.js index 52a0b2ef3973..d181c490135e 100644 --- a/lighthouse-core/gather/driver.js +++ b/lighthouse-core/gather/driver.js @@ -26,7 +26,7 @@ const Connection = require('./connections/connection.js'); // Controls how long to wait after onLoad before continuing const DEFAULT_PAUSE_AFTER_LOAD = 0; // Controls how long to wait between network requests before determining the network is quiet -const DEFAULT_NETWORK_QUIET_THRESHOLD = 5000; +const DEFAULT_NETWORK_QUIET_THRESHOLD = 10000; // Controls how long to wait between longtasks before determining the CPU is idle, off by default const DEFAULT_CPU_QUIET_THRESHOLD = 0; // Controls how long to wait for a response after sending a DevTools protocol command.