Fix a crash when service shutdown is signaled and object API is not ready yet (#2939)

master
Anis Elleuch 8 years ago committed by Harshavardhana
parent 17eeec6895
commit f463d3ce42
  1. 3
      cmd/service.go

@ -113,8 +113,9 @@ func (m *ServerMux) handleServiceSignals() error {
if objAPI == nil { if objAPI == nil {
// Server not initialized yet, exit happily. // Server not initialized yet, exit happily.
runExitFn(nil) runExitFn(nil)
} else {
runExitFn(objAPI.Shutdown())
} }
runExitFn(objAPI.Shutdown())
} }
} }
} }

Loading…
Cancel
Save