From 56a609cfee231b1d7510f4c0293be571e47fa1c2 Mon Sep 17 00:00:00 2001 From: Paul Dittamo Date: Thu, 16 Jan 2025 21:53:56 -0800 Subject: [PATCH] clean up Signed-off-by: Paul Dittamo --- flytestdlib/config/viper/viper.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/flytestdlib/config/viper/viper.go b/flytestdlib/config/viper/viper.go index 15877c8d86..ee50cb2dae 100644 --- a/flytestdlib/config/viper/viper.go +++ b/flytestdlib/config/viper/viper.go @@ -272,9 +272,6 @@ func (v viperAccessor) parseViperConfigRecursive(root config.Section, settings i if asMap, casted := settings.(map[string]interface{}); casted { myMap := map[string]interface{}{} for childKey, childValue := range asMap { - if childKey == "default-annotations" { - logger.Debugf(context.Background(), "Found default-annotations in config. Skipping.") - } if childSection, found := root.GetSections()[childKey]; found { errs.Append(v.parseViperConfigRecursive(childSection, childValue)) } else {