github-actions[bot] commented on code in PR #16639: URL: https://github.com/apache/doris/pull/16639#discussion_r1103646780
########## be/src/service/internal_service.cpp: ########## @@ -247,15 +292,18 @@ void PInternalServiceImpl::tablet_writer_cancel(google::protobuf::RpcController* const PTabletWriterCancelRequest* request, PTabletWriterCancelResult* response, google::protobuf::Closure* done) { - VLOG_RPC << "tablet writer cancel, id=" << request->id() << ", index_id=" << request->index_id() - << ", sender_id=" << request->sender_id(); - brpc::ClosureGuard closure_guard(done); - auto st = _exec_env->load_channel_mgr()->cancel(*request); - if (!st.ok()) { - LOG(WARNING) << "tablet writer cancel failed, id=" << request->id() - << ", index_id=" << request->index_id() - << ", sender_id=" << request->sender_id(); - } + DorisMetrics::instance()->tablet_writer_cancel->increment(1); + _light_work_pool.offer([this, controller, request, done]() { Review Comment: warning: lambda capture 'controller' is not used [clang-diagnostic-unused-lambda-capture] ```suggestion _light_work_pool.offer([this, request, done]() { ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org