From 27e375e8e6ccef4db727f254e79c3774833450b8 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 19 Jan 2016 13:12:00 -0800 Subject: [PATCH] launch domain-server with option to grab name --- console/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/src/main.js b/console/src/main.js index a15cfb01f4..a518c812fc 100644 --- a/console/src/main.js +++ b/console/src/main.js @@ -530,7 +530,7 @@ app.on('ready', function() { maybeShowSplash(); if (dsPath && acPath) { - domainServer = new Process('domain-server', dsPath, [], logPath); + domainServer = new Process('domain-server', dsPath, ["--get-temp-name"], logPath); acMonitor = new ACMonitorProcess('ac-monitor', acPath, ['-n6', '--log-directory', logPath, '--http-status-port', httpStatusPort], httpStatusPort, logPath);