From 5522dcdece505c0b99c37a531e90ede2e72c8c0f Mon Sep 17 00:00:00 2001 From: Mihir Mohapatra Date: Fri, 19 Jun 2026 22:33:06 +0530 Subject: [PATCH] Fix warning message for map overwrite scenario Signed-off-by: Mihir Mohapatra --- pkg/chart/common/util/coalesce.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chart/common/util/coalesce.go b/pkg/chart/common/util/coalesce.go index 177b7fb7f..87348e1b5 100644 --- a/pkg/chart/common/util/coalesce.go +++ b/pkg/chart/common/util/coalesce.go @@ -347,7 +347,7 @@ func coalesceTablesFullKey(printf printFn, dst, src map[string]any, prefix strin if istable(dv) { coalesceTablesFullKey(printf, dv.(map[string]any), val.(map[string]any), fullkey, merge) } else { - printf("warning: cannot overwrite map with non-map for %s (%v)", fullkey, val) + printf("warning: cannot overwrite map onto non-map for %s (%v)", fullkey, val) } } else if istable(dv) && val != nil { printf("warning: destination for %s is a map. Ignoring non-map value (%v)", fullkey, val)