From 226dc32ec56e90e25c3e7ea43074fc62244e57ba Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 10 Aug 2020 13:00:02 +0100 Subject: [PATCH] Fixed default shutdown timeout - should be 60s (60000ms), not 600s (600000ms) --- core/shared/config/defaults.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/shared/config/defaults.json b/core/shared/config/defaults.json index be3695a8af..133c571bc0 100644 --- a/core/shared/config/defaults.json +++ b/core/shared/config/defaults.json @@ -3,7 +3,7 @@ "server": { "host": "127.0.0.1", "port": 2368, - "shutdownTimeout": 600000 + "shutdownTimeout": 60000 }, "admin": { "redirects": true