Skip to content
Snippets Groups Projects
Commit f95487fd authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix ASSERT condition

parent c8296be7
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ Status BlockingUnaryCall(ChannelInterface *channel, const RpcMethod &method, ...@@ -57,7 +57,7 @@ Status BlockingUnaryCall(ChannelInterface *channel, const RpcMethod &method,
buf.AddClientSendClose(); buf.AddClientSendClose();
buf.AddClientRecvStatus(&context->trailing_metadata_, &status); buf.AddClientRecvStatus(&context->trailing_metadata_, &status);
call.PerformOps(&buf); call.PerformOps(&buf);
GPR_ASSERT(cq.Pluck(&buf) && (buf.got_message || !status.IsOk())); GPR_ASSERT((cq.Pluck(&buf) && buf.got_message) || !status.IsOk());
return status; return status;
} }
......
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