aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python
diff options
context:
space:
mode:
authorGravatar Eric Gribkoff <ericgribkoff@google.com>2018-12-15 08:36:32 -0800
committerGravatar Eric Gribkoff <ericgribkoff@google.com>2018-12-17 08:53:09 -0800
commit468ae0f48615a58d8f09b76ca142fee27563964a (patch)
tree5712ca857b6520343b22adef777ceb371e35c459 /src/python
parenta76d72e0a62d512f919f0fa79e24809427c9e4e7 (diff)
add tracking issue
Diffstat (limited to 'src/python')
-rw-r--r--src/python/grpcio/grpc/_cython/_cygrpc/server.pyx.pxi5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/python/grpcio/grpc/_cython/_cygrpc/server.pyx.pxi b/src/python/grpcio/grpc/_cython/_cygrpc/server.pyx.pxi
index 1b8d6790fb..e89e02b171 100644
--- a/src/python/grpcio/grpc/_cython/_cygrpc/server.pyx.pxi
+++ b/src/python/grpcio/grpc/_cython/_cygrpc/server.pyx.pxi
@@ -128,8 +128,9 @@ cdef class Server:
with nogil:
grpc_server_cancel_all_calls(self.c_server)
- # TODO(ericgribkoff) Determine what, if any, portion of this is safe to call
- # from __dealloc__, and potentially remove backup_shutdown_queue.
+ # TODO(https://github.com/grpc/grpc/issues/17515) Determine what, if any,
+ # portion of this is safe to call from __dealloc__, and potentially remove
+ # backup_shutdown_queue.
def destroy(self):
if self.c_server != NULL:
if not self.is_started: