From e408988387b74e6a2fe992783b728fd5ec917c10 Mon Sep 17 00:00:00 2001 From: David Fifield Date: Thu, 17 Oct 2019 12:53:17 -0600 Subject: [PATCH] Increase proxy poll interval to 300 s. https://bugs.torproject.org/32129 --- proxy/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/config.js b/proxy/config.js index 54c4c32..95ae92e 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 = 20.0 * 1000; +Config.prototype.defaultBrokerPollInterval = 300.0 * 1000; Config.prototype.maxNumClients = 1;