From d55eba944087009be3ca233dcc279727d2de0249 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 20 Jan 2017 11:25:17 -0800 Subject: [PATCH] update AC monitor to launch 7 ACs --- server-console/src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-console/src/main.js b/server-console/src/main.js index b387aa5dd0..cdbb1d0a3c 100644 --- a/server-console/src/main.js +++ b/server-console/src/main.js @@ -582,7 +582,7 @@ function checkNewContent() { if (argv.noUpdater) { return; } - + // Start downloading content set var req = request.head({ url: HOME_CONTENT_URL @@ -859,7 +859,7 @@ function onContentLoaded() { if (dsPath && acPath) { domainServer = new Process('domain-server', dsPath, ["--get-temp-name"], logPath); - acMonitor = new ACMonitorProcess('ac-monitor', acPath, ['-n6', + acMonitor = new ACMonitorProcess('ac-monitor', acPath, ['-n7', '--log-directory', logPath, '--http-status-port', httpStatusPort], httpStatusPort, logPath); homeServer = new ProcessGroup('home', [domainServer, acMonitor]);