merlimat commented on code in PR #87:
URL: 
https://github.com/apache/pulsar-client-python/pull/87#discussion_r1093469704


##########
src/producer.cc:
##########
@@ -34,6 +34,16 @@ MessageId Producer_send(Producer& producer, const Message& 
message) {
     return messageId;
 }
 
+void Producer_sendAsync(Producer& producer, const Message& msg, SendCallback 
callback) {
+    Py_BEGIN_ALLOW_THREADS
+    producer.sendAsync(msg, callback);

Review Comment:
   @zbentley PyBind is already acquiring the GIL before it enters the Python 
callback code.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to