]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/osd: do not capture unused variable 41515/head
authorKefu Chai <kchai@redhat.com>
Tue, 25 May 2021 06:17:09 +0000 (14:17 +0800)
committerKefu Chai <kchai@redhat.com>
Tue, 25 May 2021 06:24:59 +0000 (14:24 +0800)
Signed-off-by: Kefu Chai <kchai@redhat.com>
src/crimson/osd/osd_operations/client_request.cc

index b7ac62044f9b001bdec1f39f8299a75d7404e0ad..270eaa73a66356ff171b783d66eb7c267ad50589 100644 (file)
@@ -122,7 +122,7 @@ seastar::future<> ClientRequest::start()
             sequencer.finish_op(get_id());
             return seastar::stop_iteration::yes;
           });
-       }, [this, pgref](std::exception_ptr eptr) {
+       }, [pgref](std::exception_ptr eptr) {
           if (should_abort_request(std::move(eptr))) {
             return seastar::stop_iteration::yes;
           } else {