apache / pulsar-client-python

Apache Pulsar Python client library
https://pulsar.apache.org/
Apache License 2.0
51 stars 39 forks source link

Release the GIL before any call to async methods #123

Closed merlimat closed 1 year ago

merlimat commented 1 year ago

Fix #122

When call an async method on Pulsar C++ client, we need to be releasing the GIL to avoid a deadlock between that and the producer lock.