From f9954216f3ec66a5e3b6ac5d297bf655ec0e8ef9 Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Mon, 24 Mar 2025 13:53:35 +0100 Subject: [PATCH] [core] Remove ddl_list from defaultable values in DCS plugin In this case, the mechanism was replaced with the outcomes of OCTRL-980, so we do not need ddl_list to be defaultable anymore. Closes OCTRL-995. --- core/integration/dcs/dcsutil.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/integration/dcs/dcsutil.go b/core/integration/dcs/dcsutil.go index d6667f7a..d1fb888b 100644 --- a/core/integration/dcs/dcsutil.go +++ b/core/integration/dcs/dcsutil.go @@ -36,7 +36,7 @@ import ( func resolveDefaults(detectorArgMap map[string]string, varStack map[string]string, ecsDetector string, theLog *logrus.Entry) map[string]string { // Do we have any default expressions for defaultable values? - defaultableKeys := []string{"ddl_list"} + defaultableKeys := []string{} // at the moment we do not have any defaultable keys for _, key := range defaultableKeys { if defaultableValue, ok := detectorArgMap[key]; ok {