From 5d3dac04fa57928c0894a1583eb1c67980a7f129 Mon Sep 17 00:00:00 2001 From: navist2020 Date: Fri, 23 Apr 2021 14:40:05 +0800 Subject: [PATCH] modify Error log info --- api/resmap/reswrangler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/resmap/reswrangler.go b/api/resmap/reswrangler.go index acdceed23..2bcd3a186 100644 --- a/api/resmap/reswrangler.go +++ b/api/resmap/reswrangler.go @@ -228,7 +228,7 @@ func demandOneMatch( if len(r) > 1 { return nil, fmt.Errorf("multiple matches for %s %s", s, id) } - return nil, fmt.Errorf("no matches for %sId %s", s, id) + return nil, fmt.Errorf("no matches for %s %s", s, id) } // GroupedByCurrentNamespace implements ResMap.GroupByCurrentNamespace