Fix error message (#29882)

pull/29907/head
Richard Belleville 3 years ago committed by GitHub
parent 4d15e256ce
commit 569e397025
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio/grpc/_cython/_cygrpc/channel.pyx.pxi

@ -382,7 +382,7 @@ cdef object _watch_connectivity_state(
state.c_connectivity_completion_queue, <cpython.PyObject *>tag)
state.connectivity_due.add(tag)
else:
raise ValueError('Cannot invoke RPC: %s' % state.closed_reason)
raise ValueError('Cannot monitor channel state: %s' % state.closed_reason)
completed_tag, event = _latent_event(
state.c_connectivity_completion_queue, None)
with state.condition:

Loading…
Cancel
Save