]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson: fix a debug in BackfillState::Enqueuing::Enqueuing. 38192/head
authorRadoslaw Zarzynski <rzarzyns@redhat.com>
Thu, 19 Nov 2020 15:50:07 +0000 (16:50 +0100)
committerRadoslaw Zarzynski <rzarzyns@redhat.com>
Thu, 19 Nov 2020 16:55:31 +0000 (17:55 +0100)
Printed messages were messed up due to the erroneous comma.

Signed-off-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
src/crimson/osd/backfill_state.cc

index 2d868b559122a4a0bafb529211760f1dd00c6b8e..8fcfdc65b3d865aac217c72512f938934fafe91b 100644 (file)
@@ -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{});
   }