Merge pull request #207 from carlowouters/issue-206

fix for issue #206: correct status for probes
mine
Fernand Galiana 2019-06-03 13:24:56 -06:00 committed by GitHub
commit 9640c14aa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 "on"
}
func asMi(v int64) float64 {