From e9dfccc61632aafeb7ee79de29df397e2430b409 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Fri, 1 Nov 2019 15:08:01 +0000 Subject: [PATCH] Fix panic caused when ctrl+c a non started service --- runtime/default.go | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/default.go b/runtime/default.go index a240e71c..797ec107 100644 --- a/runtime/default.go +++ b/runtime/default.go @@ -85,6 +85,7 @@ func newService(s *Service, c CreateOptions) *service { Env: c.Env, Args: args, }, + closed: make(chan bool), output: c.Output, } }