aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/grpc/_channel.py
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2018-02-16 10:21:27 -0800
committerGravatar Ken Payson <kpayson@google.com>2018-02-20 18:11:46 -0800
commita75712a71f01c06d7e5868a75cb62b26d775e5df (patch)
treee1ac0f466ce758a0825a7b41515e8db119d98532 /src/python/grpcio/grpc/_channel.py
parent874f8128cde90bccf5979d49f83f8e8cf2b81bd1 (diff)
Remove Python background poller thread
Diffstat (limited to 'src/python/grpcio/grpc/_channel.py')
-rw-r--r--src/python/grpcio/grpc/_channel.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/python/grpcio/grpc/_channel.py b/src/python/grpcio/grpc/_channel.py
index 25a4210974..2eff08aa57 100644
--- a/src/python/grpcio/grpc/_channel.py
+++ b/src/python/grpcio/grpc/_channel.py
@@ -906,11 +906,6 @@ class Channel(grpc.Channel):
self._call_state = _ChannelCallState(self._channel)
self._connectivity_state = _ChannelConnectivityState(self._channel)
- # TODO(https://github.com/grpc/grpc/issues/9884)
- # Temporary work around UNAVAILABLE issues
- # Remove this once c-core has retry support
- _subscribe(self._connectivity_state, lambda *args: None, None)
-
def subscribe(self, callback, try_to_connect=None):
_subscribe(self._connectivity_state, callback, try_to_connect)