diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2024-03-16 22:50:40 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-16 22:50:40 +1100 |
| commit | 32424bf8c5f0abc7199689d82794e30d85d3abbd (patch) | |
| tree | 5a9577b70ed33acec936dd028d657c24af3269b0 /internal/configuration/helpers_test.go | |
| parent | 438e433e5b211512954f3c6ae5255269883f65e3 (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.go | 2 |
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) |
