From 2c6748610cc4427c8f3de8c6ca2c71a5dbc12675 Mon Sep 17 00:00:00 2001 From: braginini Date: Tue, 17 Aug 2021 09:13:25 +0200 Subject: [PATCH] fix: service command not running up --- client/cmd/service_controller.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client/cmd/service_controller.go b/client/cmd/service_controller.go index a2830510e..5b8e1e81d 100644 --- a/client/cmd/service_controller.go +++ b/client/cmd/service_controller.go @@ -8,6 +8,7 @@ import ( func (p *program) Start(s service.Service) error { // Start should not block. Do the actual work async. logger.Info("Starting service") //nolint + go upCmd.Run(p.cmd, p.args) return nil }