]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/osd: do not capture unused variable 41745/head
authorKefu Chai <kchai@redhat.com>
Tue, 8 Jun 2021 05:12:22 +0000 (13:12 +0800)
committerKefu Chai <kchai@redhat.com>
Tue, 8 Jun 2021 05:12:41 +0000 (13:12 +0800)
Signed-off-by: Kefu Chai <kchai@redhat.com>
src/crimson/osd/osd_operations/internal_client_request.cc

index 9b44695a0bc05141790833907129acbe15062873..6d615d828a2f64fb1739542b580afd91050a45e0 100644 (file)
@@ -102,7 +102,7 @@ seastar::future<> InternalClientRequest::start()
             });
           });
         });
-      }, [this](std::exception_ptr eptr) {
+      }, [](std::exception_ptr eptr) {
         if (should_abort_request(std::move(eptr))) {
           return seastar::stop_iteration::yes;
         } else {