zbentley commented on issue #6463:
URL: https://github.com/apache/pulsar/issues/6463#issuecomment-909587000


   I am also affected by this (pulsar client `2.8.0.post0`, broker 2.8.0 
standalone, Python 3.9.6 on MacOS 10.11). The following script reliably 
reproduces the segfault:
   
   ```
   import pulsar
   
   
   def get_producer():
       cl = pulsar.Client(
           'pulsar://localhost:6650',
           operation_timeout_seconds=10,
       )
       return cl.create_producer(
           'foobar',
       )
   
   
   producer = get_producer()
   producer.send(
       b'test_payload',
   )
   ```


-- 
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: commits-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to