aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/channel_ping.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-12-14 11:25:48 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-12-14 11:25:48 -0800
commit4bf292890c48d408e7dc0acd82e85ddcc9e0dde2 (patch)
tree8233a732aa3a7f626b88e7187de78dc8532a55eb /src/core/surface/channel_ping.c
parentda0cf3cdfb0cece38ed3bac26e99146aca6eaab1 (diff)
Fix proxy end2end tests
Some transport callbacks weren't getting triggered. We now ensure that this always occurs. Additionally: left some debug only code around to make this class of bug easier to diagnose in the future.
Diffstat (limited to 'src/core/surface/channel_ping.c')
-rw-r--r--src/core/surface/channel_ping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/surface/channel_ping.c b/src/core/surface/channel_ping.c
index 1b6f06ded1..b4ce282787 100644
--- a/src/core/surface/channel_ping.c
+++ b/src/core/surface/channel_ping.c
@@ -73,7 +73,7 @@ void grpc_channel_ping(grpc_channel *channel, grpc_completion_queue *cq,
grpc_closure_init(&pr->closure, ping_done, pr);
op.send_ping = &pr->closure;
op.bind_pollset = grpc_cq_pollset(cq);
- grpc_cq_begin_op(cq);
+ grpc_cq_begin_op(cq, tag);
top_elem->filter->start_transport_op(&exec_ctx, top_elem, &op);
grpc_exec_ctx_finish(&exec_ctx);
}