This commit is contained in:
Dave Hrycyszyn
2020-01-14 14:39:25 +00:00
parent 6cad7bcbef
commit 330cfdc259
+2 -2
View File
@@ -66,7 +66,7 @@ impl HealthCheckResult {
error!("Unknown node in topology - {:?}", node);
false
}
Some(score) => score >= score_threshold,
Some(score) => score > score_threshold,
}
})
.collect();
@@ -80,7 +80,7 @@ impl HealthCheckResult {
error!("Unknown node in topology - {:?}", node);
false
}
Some(score) => score >= score_threshold,
Some(score) => score > score_threshold,
}
})
.collect();