We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ced2780 commit c281520Copy full SHA for c281520
lib/config/config.json.sample
@@ -26,7 +26,6 @@
26
"upstream": "ws://localhost:9125",
27
"retryDelay": 10000,
28
"closeTimer": 15000,
29
- "workerKillTimer": 10000,
30
"enableInstrumentation": true,
31
"instrumentationTimer": 60000
32
}
lib/config/constants.js
@@ -151,7 +151,7 @@ class ConfigParser {
151
152
setWorkerKillTimer() {
153
const { workerKillTimer } = config;
154
- let defaultTimer = 60 * 10 * 1000;
+ let defaultTimer = 60 * 15 * 1000;
155
if (isNotNumber(workerKillTimer)) {
156
logger.info(
157
`No worker kill timer configured using default (${defaultTimer})`
0 commit comments