Update workflows #194

Closed
atolstikhin wants to merge 45 commits from (deleted):v3 into v3
Showing only changes of commit 1432587369 - Show all commits

View File

@ -533,9 +533,12 @@ func (h *Server) Start() error {
ctx, cancel := context.WithTimeout(context.Background(), h.opts.GracefulTimeout) ctx, cancel := context.WithTimeout(context.Background(), h.opts.GracefulTimeout)
defer cancel() defer cancel()
if err := hs.Shutdown(ctx); err != nil { err := hs.Shutdown(ctx)
ch <- hs.Close() if err != nil {
err = hs.Close()
} }
ch <- err
}() }()
return nil return nil