Hello, i&#39;m just getting started with RabbitMQ and have been reading through the tutorials and trying to run the code samples in Python. I&#39;ve installed Pika 0.9.5 but when I run the following script, i get the error message down below at the end of this post complaining that the &#39;CallbackManager&#39; object has no attribute &#39;sanitize&#39;: I&#39;m not sure how to go about fixing this, any help would be greatly appreciated.Thanks in advance for any responses.<div>
<br></div><div>Mike<br><div><br></div><div><div>#!/usr/bin/env python</div><div>import pika</div><div><br></div><div>connection = pika.BlockingConnection(pika.ConnectionParameters(</div><div>        host=&#39;localhost&#39;))</div>
<div>channel = connection.channel()</div><div><br></div><div>channel.queue_declare(queue=&#39;hello&#39;)</div><div><br></div><div>print &#39; [*] Waiting for messages. To exit press CTRL+C&#39;</div><div><br></div><div>def callback(ch, method, properties, body):</div>
<div>    print &quot; [x] Received %r&quot; % (body,)</div><div><br></div><div>channel.basic_consume(callback,</div><div>                      queue=&#39;hello&#39;,</div><div>                      no_ack=True)</div><div>
<br></div><div>channel.start_consuming()</div><div><br></div><div>ERROR RETURNED:</div><div><div>Traceback (most recent call last):</div><div>  File &quot;receive.py&quot;, line 6, in &lt;module&gt;</div><div>    channel = connection.channel()</div>
<div>  File &quot;build/bdist.linux-i686/egg/pika/adapters/blocking_connection.py&quot;, line 129, in channel</div><div>  File &quot;build/bdist.linux-i686/egg/pika/adapters/blocking_connection.py&quot;, line 274, in __init__</div>
<div>  File &quot;build/bdist.linux-i686/egg/pika/channel.py&quot;, line 236, in open</div><div>  File &quot;build/bdist.linux-i686/egg/pika/adapters/blocking_connection.py&quot;, line 254, in send_method</div><div>  File &quot;build/bdist.linux-i686/egg/pika/adapters/blocking_connection.py&quot;, line 95, in process_data_events</div>
<div>  File &quot;build/bdist.linux-i686/egg/pika/adapters/base_connection.py&quot;, line 315, in _handle_read</div><div>  File &quot;build/bdist.linux-i686/egg/pika/connection.py&quot;, line 701, in _on_data_available</div>
<div>  File &quot;build/bdist.linux-i686/egg/pika/callback.py&quot;, line 161, in process</div><div>  File &quot;build/bdist.linux-i686/egg/pika/adapters/blocking_connection.py&quot;, line 230, in _on_rpc_complete</div><div>
AttributeError: &#39;CallbackManager&#39; object has no attribute &#39;sanitize&#39;</div></div><div><br></div><div><br></div><div><br></div></div></div>