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

Fixes #6870
This commit is contained in:
Praveen raj Mani 2018-12-05 07:57:12 +05:30 committed by kannappanr
parent 61145361fd
commit 4e6d3c093f

View file

@ -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()