aboutsummaryrefslogtreecommitdiff
path: root/cgi/servers.go
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/servers.go')
-rw-r--r--cgi/servers.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cgi/servers.go b/cgi/servers.go
index 44a636c..8538920 100644
--- a/cgi/servers.go
+++ b/cgi/servers.go
@@ -44,7 +44,7 @@ func (s *Servers) Start() {
signed, err := delivery.NewSigned(s.persister)
if err != nil {
- panic(err)
+ logger.Error(err)
return
}
@@ -74,6 +74,7 @@ func (s *Servers) Start() {
}
wg.Wait()
+ return nil
}
func startCGIServer(h config.Handler, log *zap.SugaredLogger) {