From 861ab8377e994d68ff6941972d4a46743cbb7eaf Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Tue, 11 Apr 2023 21:04:35 +0000 Subject: [PATCH] crimson/osd: fix misleading indentation in ClientRequest Signed-off-by: Radoslaw Zarzynski --- src/crimson/osd/osd_operations/client_request.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/crimson/osd/osd_operations/client_request.cc b/src/crimson/osd/osd_operations/client_request.cc index 79808e822338c..58b5aa22572db 100644 --- a/src/crimson/osd/osd_operations/client_request.cc +++ b/src/crimson/osd/osd_operations/client_request.cc @@ -231,11 +231,12 @@ ClientRequest::process_op(instance_handle_t &ihref, Ref &pg) return pg->with_locked_obc( m->get_hobj(), op_info, [this, pg, &ihref](auto obc) mutable { - return ihref.enter_stage(pp(*pg).process, *this - ).then_interruptible([this, pg, obc, &ihref]() mutable { - return do_process(ihref, pg, obc); + return ihref.enter_stage( + pp(*pg).process, *this + ).then_interruptible([this, pg, obc, &ihref]() mutable { + return do_process(ihref, pg, obc); + }); }); - }); }); } }); -- 2.39.5