From 125f90ba18c5961c3ed2ea0beff89663e83ee91e Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Mon, 17 Oct 2016 13:11:53 +1000 Subject: [PATCH] osd: Fix typos in PG::find_best_info Signed-off-by: Brad Hubbard --- src/osd/PG.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osd/PG.cc b/src/osd/PG.cc index 4ca9a48a2fa1b..5fedac0c556b3 100644 --- a/src/osd/PG.cc +++ b/src/osd/PG.cc @@ -1027,10 +1027,10 @@ map::const_iterator PG::find_best_info( // Only consider peers with last_update >= min_last_update_acceptable if (p->second.last_update < min_last_update_acceptable) continue; - // disqualify anyone with a too old last_epoch_started + // Disqualify anyone with a too old last_epoch_started if (p->second.last_epoch_started < max_last_epoch_started_found) continue; - // Disquality anyone who is incomplete (not fully backfilled) + // Disqualify anyone who is incomplete (not fully backfilled) if (p->second.is_incomplete()) continue; if (best == infos.end()) { -- 2.39.5