From 099d3cdf727ea54b32cda48c0084beab21d2af7a Mon Sep 17 00:00:00 2001 From: Michael Musenbrock Date: Thu, 15 Sep 2022 18:19:34 +0200 Subject: [PATCH] Provisioning Contact points: Support disableResolveMessage via YAML too (#54122) Signed-off-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) {