]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
crimson/osd/osd_operations/peering_event.cc: whitespace fix
authorSamuel Just <sjust@redhat.com>
Tue, 6 Sep 2022 20:43:08 +0000 (13:43 -0700)
committerSamuel Just <sjust@redhat.com>
Tue, 27 Sep 2022 02:35:41 +0000 (19:35 -0700)
Signed-off-by: Samuel Just <sjust@redhat.com>
src/crimson/osd/osd_operations/peering_event.cc

index 277460d485bee76f20a20e57a2916e1288ac2f6f..dc486d4c6a6290f47aacff95f7c4aff27d8725aa 100644 (file)
@@ -87,13 +87,13 @@ seastar::future<> PeeringEvent<T>::with_pg(
       return complete_rctx(shard_services, pg);
     }).then_interruptible([pg, &shard_services]()
                          -> typename T::template interruptible_future<> {
-        if (!pg->get_need_up_thru()) {
-          return seastar::now();
-        }
-        return shard_services.send_alive(pg->get_same_interval_since());
-      }).then_interruptible([&shard_services] {
-        return shard_services.send_pg_temp();
-      });
+      if (!pg->get_need_up_thru()) {
+       return seastar::now();
+      }
+      return shard_services.send_alive(pg->get_same_interval_since());
+    }).then_interruptible([&shard_services] {
+      return shard_services.send_pg_temp();
+    });
   }, [this](std::exception_ptr ep) {
     logger().debug("{}: interrupted with {}", *this, ep);
   }, pg);