mirror of
https://github.com/helm/helm.git
synced 2026-04-15 21:59:50 -04:00
feat(helm): remove logging of tags/condition warnings to pass ci
This commit is contained in:
parent
58c8aca1cc
commit
fe864ad699
1 changed files with 2 additions and 2 deletions
|
|
@ -147,7 +147,7 @@ func ProcessRequirementsConditions(reqs *Requirements, cvals Values) {
|
|||
hasFalse = true
|
||||
}
|
||||
} else {
|
||||
log.Printf("Warning: Condition path '%s' for chart %s returned non-bool value", c, r.Name)
|
||||
//log.Printf("Warning: Condition path '%s' for chart %s returned non-bool value", c, r.Name)
|
||||
}
|
||||
} else if _, ok := err.(ErrNoValue); !ok {
|
||||
// this is a real error
|
||||
|
|
@ -197,7 +197,7 @@ func ProcessRequirementsTags(reqs *Requirements, cvals Values) {
|
|||
hasFalse = true
|
||||
}
|
||||
} else {
|
||||
log.Printf("Warning: Tag '%s' for chart %s returned non-bool value", k, r.Name)
|
||||
//log.Printf("Warning: Tag '%s' for chart %s returned non-bool value", k, r.Name)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue