aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests
diff options
context:
space:
mode:
authorGravatar Eric Gribkoff <ericgribkoff@google.com>2018-12-07 09:23:54 -0800
committerGravatar Eric Gribkoff <ericgribkoff@google.com>2018-12-17 08:53:09 -0800
commit082b63e09592502b0900a5dff214dc70efb9de56 (patch)
treeb5cf6239a84cabbd08e831f63468f3854d580ff5 /src/python/grpcio_tests
parentb250f34b1225cde1bb19496c5cc5d66e40111052 (diff)
Refactor server deallocation
Diffstat (limited to 'src/python/grpcio_tests')
-rw-r--r--src/python/grpcio_tests/tests/channelz/_channelz_servicer_test.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/python/grpcio_tests/tests/channelz/_channelz_servicer_test.py b/src/python/grpcio_tests/tests/channelz/_channelz_servicer_test.py
index 8ca5189522..5265911a0b 100644
--- a/src/python/grpcio_tests/tests/channelz/_channelz_servicer_test.py
+++ b/src/python/grpcio_tests/tests/channelz/_channelz_servicer_test.py
@@ -88,8 +88,6 @@ def _generate_channel_server_pairs(n):
def _close_channel_server_pairs(pairs):
for pair in pairs:
pair.server.stop(None)
- # TODO(ericgribkoff) This del should not be required
- del pair.server
pair.channel.close()