From: Radoslaw Zarzynski Date: Thu, 19 Nov 2020 15:50:07 +0000 (+0100) Subject: crimson: fix a debug in BackfillState::Enqueuing::Enqueuing. X-Git-Tag: v17.0.0~569^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=6403cef750e29ed1006d5908651ebe2487a6c5ae;p=ceph.git crimson: fix a debug in BackfillState::Enqueuing::Enqueuing. Printed messages were messed up due to the erroneous comma. Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/crimson/osd/backfill_state.cc b/src/crimson/osd/backfill_state.cc index 2d868b559122a..8fcfdc65b3d86 100644 --- a/src/crimson/osd/backfill_state.cc +++ b/src/crimson/osd/backfill_state.cc @@ -341,7 +341,7 @@ BackfillState::Enqueuing::Enqueuing(my_context ctx) } else if (backfill_state().progress_tracker->tracked_objects_completed()) { post_event(RequestDone{}); } else { - logger().debug("{}: reached end for both local and all peers ", + logger().debug("{}: reached end for both local and all peers " "but still has in-flight operations", __func__); post_event(RequestWaiting{}); }