diff options
author | David Garcia Quintas <dgq@google.com> | 2015-05-27 19:21:01 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-05-31 12:48:16 -0700 |
commit | a30020f00996735ce8890dca534a31b8e97b5889 (patch) | |
tree | ef28ed5647b60bc8c6316409d7d56b8eee90f68a /src/core/channel | |
parent | 5f228f5001c7c1f85c0d1965640bd6258d7b9188 (diff) |
Comments addressed.
Diffstat (limited to 'src/core/channel')
-rw-r--r-- | src/core/channel/child_channel.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/channel/child_channel.c b/src/core/channel/child_channel.c index 5679a8c81a..213a4b881d 100644 --- a/src/core/channel/child_channel.c +++ b/src/core/channel/child_channel.c @@ -218,7 +218,6 @@ static void maybe_destroy_channel(grpc_child_channel *channel) { !chand->sending_farewell && !chand->calling_back) { chand->finally_destroy_channel_iocb.cb = finally_destroy_channel; chand->finally_destroy_channel_iocb.cb_arg = channel; - chand->finally_destroy_channel_iocb.is_ext_managed = 1; /* GPR_TRUE */ grpc_iomgr_add_callback(&chand->finally_destroy_channel_iocb); } else if (chand->destroyed && !chand->disconnected && chand->active_calls == 0 && !chand->sending_farewell && @@ -226,7 +225,6 @@ static void maybe_destroy_channel(grpc_child_channel *channel) { chand->sending_farewell = 1; chand->send_farewells_iocb.cb = send_farewells; chand->send_farewells_iocb.cb_arg = channel; - chand->send_farewells_iocb.is_ext_managed = 1; /* GPR_TRUE */ grpc_iomgr_add_callback(&chand->send_farewells_iocb); } } |