From: Brad Hubbard Date: Mon, 17 Oct 2016 03:11:53 +0000 (+1000) Subject: osd: Fix typos in PG::find_best_info X-Git-Tag: v11.1.0~626^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=125f90ba18c5961c3ed2ea0beff89663e83ee91e;p=ceph-ci.git osd: Fix typos in PG::find_best_info Signed-off-by: Brad Hubbard --- diff --git a/src/osd/PG.cc b/src/osd/PG.cc index 4ca9a48a2fa..5fedac0c556 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()) {