From 4e6d3c093f9d5d08775469e22c4fbb2a49c4493a Mon Sep 17 00:00:00 2001 From: Praveen raj Mani Date: Wed, 5 Dec 2018 07:57:12 +0530 Subject: [PATCH] Errors in notification config should not crash the server (#6881) Fixes #6870 --- cmd/server-main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/server-main.go b/cmd/server-main.go index ad0bc6649..9f14faedf 100644 --- a/cmd/server-main.go +++ b/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()