From a0f9ec6bd6ffd7fbc9ef59da0eca8319e8bc37fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Wed, 25 Apr 2018 11:33:42 +0200 Subject: [PATCH] Fix hardcoded supervisor program name in IdeComponent --- src/app/ide/ide.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/ide/ide.component.ts b/src/app/ide/ide.component.ts index ec0ee2f..25c678a 100644 --- a/src/app/ide/ide.component.ts +++ b/src/app/ide/ide.component.ts @@ -122,7 +122,7 @@ export class IdeComponent implements OnInit { } deployCode() { - this.processManagerService.restartProcess('login'); + this.processManagerService.restartProcess(config.ide.deployProcessName); this.setDeployButtonState('DEPLOYING'); }