diff options
author | Muxi Yan <mxyan@google.com> | 2017-06-23 16:26:33 -0700 |
---|---|---|
committer | Muxi Yan <mxyan@google.com> | 2017-06-23 16:29:29 -0700 |
commit | 275e392449ad4c366e65911a4d3b803f5bd840e5 (patch) | |
tree | 6ec2ac10b71d906383d5b5b128fcf3401eb6793f /src/core/ext/transport | |
parent | a1d79d9763ea5500ad4f50e02b2f72659f3fb0ba (diff) |
Another bug fix in the same series
Diffstat (limited to 'src/core/ext/transport')
-rw-r--r-- | src/core/ext/transport/cronet/transport/cronet_transport.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/ext/transport/cronet/transport/cronet_transport.c b/src/core/ext/transport/cronet/transport/cronet_transport.c index c178c71e7b..380146fece 100644 --- a/src/core/ext/transport/cronet/transport/cronet_transport.c +++ b/src/core/ext/transport/cronet/transport/cronet_transport.c @@ -47,7 +47,7 @@ } while (0) /* TODO (makdharma): Hook up into the wider tracing mechanism */ -int grpc_cronet_trace = 0; +int grpc_cronet_trace = 1; enum e_op_result { ACTION_TAKEN_WITH_CALLBACK, @@ -788,8 +788,7 @@ static bool op_can_be_run(grpc_transport_stream_op_batch *curr_op, CRONET_LOG(GPR_DEBUG, "Because"); result = false; } - if (op_id == OP_RECV_MESSAGE && - stream_state->state_op_done[OP_RECV_MESSAGE]) { + if (op_id == OP_RECV_MESSAGE && op_state->state_op_done[OP_RECV_MESSAGE]) { CRONET_LOG(GPR_DEBUG, "Because"); result = false; } |