Commit 2b6013ce by bergquist

fix(notifications): failed image upload should not stop notification

closes #6638
parent 6fa4b8c0
...@@ -55,10 +55,8 @@ func (n *RootNotifier) Notify(context *EvalContext) error { ...@@ -55,10 +55,8 @@ func (n *RootNotifier) Notify(context *EvalContext) error {
return nil return nil
} }
err = n.uploadImage(context) if err = n.uploadImage(context); err != nil {
if err != nil { n.log.Error("Failed to upload alert panel image.", "error", err)
n.log.Error("Failed to upload alert panel image", "error", err)
return err
} }
return n.sendNotifications(context, notifiers) return n.sendNotifications(context, notifiers)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment