Skip to content

Commit

Permalink
Fixing queue name.
Browse files Browse the repository at this point in the history
  • Loading branch information
brimcfadden committed Jul 15, 2011
1 parent 0f60d6f commit ed33b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tutorial6/rpc_server.py
Expand Up @@ -15,7 +15,7 @@ def fib(n):
def on_connect():
global ch
ch = conn.channel()
ch.queue_declare(queue='task_queue', durable=True)
ch.queue_declare(queue='rpc_queue', durable=True)
ch.qos(prefetch_count=1)
ch.consume('rpc_queue', on_request)

Expand Down

0 comments on commit ed33b05

Please sign in to comment.