Merge pull request #21786 from benjaminp/deliver-daemon

Mark the delivery thread daemonic.
pull/21799/head
Richard Belleville 5 years ago committed by GitHub
commit 8af2097a45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/python/grpcio/grpc/_channel.py

@ -1240,6 +1240,7 @@ def _spawn_delivery(state, callbacks):
state.connectivity,
callbacks,
))
delivering_thread.setDaemon(True)
delivering_thread.start()
state.delivering = True

Loading…
Cancel
Save