From 946622f7c6cf4520748e203310f20ec3df9b72e8 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Thu, 15 Sep 2022 23:53:00 +0200 Subject: [PATCH] Provisioning Contact points: Support disableResolveMessage via YAML too (#54122) (#55254) Signed-off-by: Michael Musenbrock (cherry picked from commit 099d3cdf727ea54b32cda48c0084beab21d2af7a) Co-authored-by: Michael Musenbrock --- pkg/services/provisioning/alerting/contact_point_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/provisioning/alerting/contact_point_types.go b/pkg/services/provisioning/alerting/contact_point_types.go index 82803bb3165..1f80570c713 100644 --- a/pkg/services/provisioning/alerting/contact_point_types.go +++ b/pkg/services/provisioning/alerting/contact_point_types.go @@ -68,7 +68,7 @@ type ReceiverV1 struct { UID values.StringValue `json:"uid" yaml:"uid"` Type values.StringValue `json:"type" yaml:"type"` Settings values.JSONValue `json:"settings" yaml:"settings"` - DisableResolveMessage values.BoolValue `json:"disableResolveMessage"` + DisableResolveMessage values.BoolValue `json:"disableResolveMessage" yaml:"disableResolveMessage"` } func (config *ReceiverV1) mapToModel(name string) (definitions.EmbeddedContactPoint, error) {