From fbd3bf0cb00ee144128635a6a53c30067e3b53cc Mon Sep 17 00:00:00 2001 From: toepkerd <120457569+toepkerd@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:15:12 -0700 Subject: [PATCH] Enabling alerting comments feature by defualt (#1725) Signed-off-by: Dennis Toepker Co-authored-by: Dennis Toepker --- .../kotlin/org/opensearch/alerting/settings/AlertingSettings.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alerting/src/main/kotlin/org/opensearch/alerting/settings/AlertingSettings.kt b/alerting/src/main/kotlin/org/opensearch/alerting/settings/AlertingSettings.kt index dc554b455..462f36b19 100644 --- a/alerting/src/main/kotlin/org/opensearch/alerting/settings/AlertingSettings.kt +++ b/alerting/src/main/kotlin/org/opensearch/alerting/settings/AlertingSettings.kt @@ -226,7 +226,7 @@ class AlertingSettings { val ALERTING_COMMENTS_ENABLED = Setting.boolSetting( "plugins.alerting.comments_enabled", - false, + true, Setting.Property.NodeScope, Setting.Property.Dynamic )