Merge pull request #23415 from yashykt/genericfailsend

Fix FailHijackedRecvMessage for generic async APIs
pull/23375/head
Yash Tibrewal 5 years ago committed by GitHub
commit e2bd6d9f29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      include/grpcpp/impl/codegen/call_op_set.h

@ -549,7 +549,7 @@ class CallOpGenericRecvMessage {
}
void FinishOp(bool* status) {
if (!deserialize_ || hijacked_) return;
if (!deserialize_) return;
if (recv_buf_.Valid()) {
if (*status) {
got_message = true;

Loading…
Cancel
Save