From 0558f4048c7415c4c80ccbf385f9f549147d197c Mon Sep 17 00:00:00 2001 From: Yash Tibrewal Date: Tue, 16 Feb 2021 17:34:56 -0800 Subject: [PATCH] Enable initiating writes for bdp pings --- src/core/ext/transport/chttp2/transport/chttp2_transport.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc index e45a3cbaa15..35c0512cada 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc @@ -2569,9 +2569,7 @@ void schedule_bdp_ping_locked(grpc_chttp2_transport* t) { grpc_schedule_on_exec_ctx), GRPC_CLOSURE_INIT(&t->finish_bdp_ping_locked, finish_bdp_ping, t, grpc_schedule_on_exec_ctx)); - // TODO(yashykt): Enabling this causes internal b/168345569. Re-enable once - // fixed. - // grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_BDP_PING); + grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_BDP_PING); } static void start_bdp_ping(void* tp, grpc_error* error) {