apache / rocketmq-client-python

Apache RocketMQ python client
https://rocketmq.apache.org/
Apache License 2.0
271 stars 95 forks source link

Segmentation fault (core dumped) #122

Open HuismanKwl opened 2 years ago

HuismanKwl commented 2 years ago

rocketmq-4.9.2
rocketmq-client-python-2.0.0

def callback(msg): return CONSUME_SUCCESS

consumer = PushConsumer(xxxxx) consumer.set_name_server_address(xxxxx) consumer.subscribe(xxxxx, callback) consumer.set_thread_count(1) consumer.start()

consumer.start() happened Segmentation fault (core dumped)

ifplusor commented 2 years ago

Please post more details about the coredump.

feng-1985 commented 2 years ago

Same issue. When add while True: time.sleep(30), then it's hung on as expected, you can get ride of this issue.