summaryrefslogtreecommitdiff
path: root/python/examples/fanout/declare_queues.py
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2008-01-18 10:36:50 +0000
committerArnaud Simon <arnaudsimon@apache.org>2008-01-18 10:36:50 +0000
commitc87caf75ecebb4fd2eb3dafb732e77f4d7011283 (patch)
tree89ccec5a1167e003ac33d8ac7c48a31c7739c57a /python/examples/fanout/declare_queues.py
parentca8e0ae1c7f635eff690561d6c4dc5cc6ec62fb2 (diff)
downloadqpid-python-c87caf75ecebb4fd2eb3dafb732e77f4d7011283.tar.gz
Qpid-745
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@613126 13f79535-47bb-0310-9956-ffa450edef68
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.