From f94ef87c46c5e04e17b4b399ca66193461de4381 Mon Sep 17 00:00:00 2001 From: Cecylia Bocovich Date: Mon, 12 Aug 2019 13:14:25 -0400 Subject: [PATCH] Increase webextension poll period Raise the webextension poll period from 5 to 20 seconds (bug 31200). --- proxy/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/config.js b/proxy/config.js index b49bb8d..54c4c32 100644 --- a/proxy/config.js +++ b/proxy/config.js @@ -20,7 +20,7 @@ Config.prototype.minRateLimit = 10 * 1024; Config.prototype.rateLimitHistory = 5.0; -Config.prototype.defaultBrokerPollInterval = 5.0 * 1000; +Config.prototype.defaultBrokerPollInterval = 20.0 * 1000; Config.prototype.maxNumClients = 1;