Browse Source

Remove unused code

Lidi Zheng 5 years ago
parent
commit
65e4f17a2c
1 changed files with 0 additions and 3 deletions
  1. 0 3
      src/python/grpcio/grpc/experimental/aio/_call.py

+ 0 - 3
src/python/grpcio/grpc/experimental/aio/_call.py

@@ -149,14 +149,12 @@ class Call(_base_call.Call):
     _code: grpc.StatusCode
     _code: grpc.StatusCode
     _status: Awaitable[cygrpc.AioRpcStatus]
     _status: Awaitable[cygrpc.AioRpcStatus]
     _initial_metadata: Awaitable[MetadataType]
     _initial_metadata: Awaitable[MetadataType]
-    _cancellation: asyncio.Future
 
 
     def __init__(self) -> None:
     def __init__(self) -> None:
         self._loop = asyncio.get_event_loop()
         self._loop = asyncio.get_event_loop()
         self._code = None
         self._code = None
         self._status = self._loop.create_future()
         self._status = self._loop.create_future()
         self._initial_metadata = self._loop.create_future()
         self._initial_metadata = self._loop.create_future()
-        self._cancellation = self._loop.create_future()
 
 
     def cancel(self) -> bool:
     def cancel(self) -> bool:
         """Placeholder cancellation method.
         """Placeholder cancellation method.
@@ -205,7 +203,6 @@ class Call(_base_call.Call):
         cancellation (by application) and Core receiving status from peer. We
         cancellation (by application) and Core receiving status from peer. We
         make no promise here which one will win.
         make no promise here which one will win.
         """
         """
-        logging.debug('Call._set_status, %s, %s', self._status.done(), status)
         # In case of the RPC finished without receiving metadata.
         # In case of the RPC finished without receiving metadata.
         if not self._initial_metadata.done():
         if not self._initial_metadata.done():
             self._initial_metadata.set_result(None)
             self._initial_metadata.set_result(None)