summaryrefslogtreecommitdiff
path: root/internal/configuration/helpers_test.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2024-03-16 22:50:40 +1100
committerGitHub <noreply@github.com>2024-03-16 22:50:40 +1100
commit32424bf8c5f0abc7199689d82794e30d85d3abbd (patch)
tree5a9577b70ed33acec936dd028d657c24af3269b0 /internal/configuration/helpers_test.go
parent438e433e5b211512954f3c6ae5255269883f65e3 (diff)
fix(configuration): include more helpful address mapping logs (#6909)
This includes more helpful address mapping logs which actually show the value automatically mapped so users can update and debug easier. Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/configuration/helpers_test.go')
-rw-r--r--internal/configuration/helpers_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/configuration/helpers_test.go b/internal/configuration/helpers_test.go
index 678b8535c..b584b8e09 100644
--- a/internal/configuration/helpers_test.go
+++ b/internal/configuration/helpers_test.go
@@ -30,7 +30,7 @@ func TestGetEnvConfigMaps(t *testing.T) {
"mysecret.user_password",
}
- keys, ignoredKeys := getEnvConfigMap(input, DefaultEnvPrefix, DefaultEnvDelimiter, deprecations)
+ keys, ignoredKeys := getEnvConfigMap(input, DefaultEnvPrefix, DefaultEnvDelimiter, deprecations, deprecationsMKM)
key, ok = keys[DefaultEnvPrefix+"MY_NON_SECRET_CONFIG_ITEM"]
assert.True(t, ok)