rocketmq-python
rocketmq-python copied to clipboard
RocketMQ Python client
Results
12
rocketmq-python issues
Sort by
recently updated
recently updated
newest added
def test_push_consumer_reconsume_later(): stop_event = threading.Event() raised_exc = threading.Event() def on_message(msg): print(msg.body.decode('utf-8')) if not raised_exc.is_set(): raised_exc.set() raise Exception('Should reconsume later') stop_event.set() consumer = PushConsumer('xxxx') consumer.set_namesrv_domain('http://onsaddr-internet.aliyun.com/rocketmq/nsaddr4client-internet') # For ip and port name...
question