Skip to content

Commit f995421

Browse files
committed
[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.
1 parent a192490 commit f995421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/integration/dcs/dcsutil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636

3737
func resolveDefaults(detectorArgMap map[string]string, varStack map[string]string, ecsDetector string, theLog *logrus.Entry) map[string]string {
3838
// Do we have any default expressions for defaultable values?
39-
defaultableKeys := []string{"ddl_list"}
39+
defaultableKeys := []string{} // at the moment we do not have any defaultable keys
4040

4141
for _, key := range defaultableKeys {
4242
if defaultableValue, ok := detectorArgMap[key]; ok {

0 commit comments

Comments
 (0)