fix for issue #206: correct status for probes

mine
Carlo Wouters 2019-06-03 12:20:19 +02:00
parent f469070b35
commit ce1a7bc070
1 changed files with 2 additions and 2 deletions

View File

@ -287,9 +287,9 @@ func toRes(r v1.ResourceList) (string, string) {
func probe(p *v1.Probe) string {
if p == nil {
return "on"
return "off"
}
return "off"
return "on"
}
func asMi(v int64) float64 {