From 330cfdc259b5fa215e26fd2d2b76de1c7eccf98e Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Tue, 14 Jan 2020 14:39:25 +0000 Subject: [PATCH] rustfmt --- common/healthcheck/src/result.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/healthcheck/src/result.rs b/common/healthcheck/src/result.rs index eaa74addcb..79ec6a291f 100644 --- a/common/healthcheck/src/result.rs +++ b/common/healthcheck/src/result.rs @@ -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();