未验证 提交 3a3f28f9 编写于 作者: G gongweibao 提交者: GitHub

add (#13377)

上级 a56b6637
...@@ -290,12 +290,18 @@ void GRPCClient::Proceed() { ...@@ -290,12 +290,18 @@ void GRPCClient::Proceed() {
c->Finish(false); c->Finish(false);
} }
delete c; bool notify = false;
{ {
std::lock_guard<std::mutex> lk(sync_mutex_); std::lock_guard<std::mutex> lk(sync_mutex_);
req_count_--; req_count_--;
notify = (req_count_ <= 0 || !c->status_.ok());
}
delete c;
if (notify) {
sync_cond_.notify_all();
} }
sync_cond_.notify_all();
} }
VLOG(3) << "GRPCClient Proceed end"; VLOG(3) << "GRPCClient Proceed end";
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册