把
chan.basic_consume(callback, queue='hello', no_ack=True)
改成
chan.basic_consume(queue='hello', on_message_callback=callback, auto_ack=True)
就好了 是源码里面参数的位置变了。
把
chan.basic_consume(callback, queue='hello', no_ack=True)
改成
chan.basic_consume(queue='hello', on_message_callback=callback, auto_ack=True)
就好了 是源码里面参数的位置变了。
本文标题:basic_consume() got multiple val
本文链接:https://www.haomeiwen.com/subject/bvheaqtx.html
网友评论