summaryrefslogtreecommitdiff
path: root/python/examples/fanout/declare_queues.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/fanout/declare_queues.py')
-rw-r--r--python/examples/fanout/declare_queues.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/python/examples/fanout/declare_queues.py b/python/examples/fanout/declare_queues.py
index 3315f5bc14..8840ea38e1 100644
--- a/python/examples/fanout/declare_queues.py
+++ b/python/examples/fanout/declare_queues.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
"""
- config_direct_exchange.py
+ declare_queues.py
Creates and binds a queue on an AMQP direct exchange.
@@ -33,9 +33,6 @@ session.session_open()
#----- Create a queue -------------------------------------
-# Create a queue named "listener" on channel 1, and bind it
-# to the "amq.fanout" exchange.
-#
# queue_declare() creates an AMQP queue, which is held
# on the broker. Published messages are sent to the AMQP queue,
# from which messages are delivered to consumers.