Skip to content
Snippets Groups Projects
Commit dc71eeba authored by yang-g's avatar yang-g
Browse files

remove braces

parent 3d769d7f
No related branches found
No related tags found
No related merge requests found
...@@ -113,11 +113,9 @@ class ReconnectServiceImpl : public ReconnectService::Service { ...@@ -113,11 +113,9 @@ class ReconnectServiceImpl : public ReconnectService::Service {
// extract timestamps and set response // extract timestamps and set response
Verify(response); Verify(response);
reconnect_server_clear_timestamps(&tcp_server_); reconnect_server_clear_timestamps(&tcp_server_);
{ std::lock_guard<std::mutex> lock(mu_);
std::lock_guard<std::mutex> lock(mu_); serving_ = false;
serving_ = false; cv_.notify_one();
cv_.notify_one();
}
return Status::OK; return Status::OK;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment