diff --git a/src/allmydata/mutable/checker.py b/src/allmydata/mutable/checker.py index 64266ad38..58da3cfde 100644 --- a/src/allmydata/mutable/checker.py +++ b/src/allmydata/mutable/checker.py @@ -193,7 +193,7 @@ class MutableChecker: s = counters["count-shares-good"] k = counters["count-shares-needed"] N = counters["count-shares-expected"] - if s < k: + if s < N: healthy = False report.append("Unhealthy: best version has only %d shares " "(encoding is %d-of-%d)" % (s, k, N))