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)
defer cancel()
if err := hs.Shutdown(ctx); err != nil {
ch <- hs.Close()
err := hs.Shutdown(ctx)
if err != nil {
err = hs.Close()
}
ch <- err
}()
return nil