Errors in notification config should not crash the server (#6881)

Fixes #6870
master
Praveen raj Mani 6 years ago committed by kannappanr
parent 61145361fd
commit 4e6d3c093f
  1. 2
      cmd/server-main.go

@ -381,7 +381,7 @@ func serverMain(ctx *cli.Context) {
// Initialize notification system.
if err = globalNotificationSys.Init(newObject); err != nil {
logger.Fatal(err, "Unable to initialize notification system")
logger.LogIf(context.Background(), err)
}
globalObjLayerMutex.Lock()

Loading…
Cancel
Save