From 18fc7c0d13bb0309ef03dbddfbed842b7ba1bdc9 Mon Sep 17 00:00:00 2001 From: Ricardo Maraschini Date: Wed, 4 Oct 2023 15:28:51 +0200 Subject: [PATCH] chore: remove what seems to be a dangling println this println is printing `false` to the stdout. not sure why it is there other than maybe a past debug session. Signed-off-by: Ricardo Maraschini --- pkg/action/upgrade.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/action/upgrade.go b/pkg/action/upgrade.go index 9c837dc60..c74b502e2 100644 --- a/pkg/action/upgrade.go +++ b/pkg/action/upgrade.go @@ -262,7 +262,6 @@ func (u *Upgrade) prepareUpgrade(name string, chart *chart.Chart, vals map[strin return nil, nil, err } - fmt.Println(driver.ContainsSystemLabels(u.Labels)) if driver.ContainsSystemLabels(u.Labels) { return nil, nil, fmt.Errorf("user suplied labels contains system reserved label name. System labels: %+v", driver.GetSystemLabels()) }