summaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-06-07 15:20:01 +0100
committerAsk Solem <ask@celeryproject.org>2012-06-07 15:20:01 +0100
commit736853d1d552c34c154ff5cc58d9be0ea271df73 (patch)
treec9e52cba2fe0dda6ee09721025361d2206589a9e /Changelog
parent384d3050fab24861dabbacf1138626251f77f708 (diff)
downloadkombu-736853d1d552c34c154ff5cc58d9be0ea271df73.tar.gz
Set release-date for 2.2.0
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog24
1 files changed, 21 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 2928fe0a..ae7711a0 100644
--- a/Changelog
+++ b/Changelog
@@ -6,8 +6,8 @@
2.2.0
=====
-:release-date: TBA
-
+:release-date: 2012-06-07 3:10 P.M BST
+:by: Ask Solem
.. _v220-important:
@@ -23,10 +23,21 @@ Important Notes
Auto delete has been described as a misfeature,
and therefore we are disabled it.
- Old exchanges used by pidbox must be removed,
+ For RabbitMQ users old exchanges used by pidbox must be removed,
these are named ``mailbox_name.pidbox``,
and ``reply.mailbox_name.pidbox``.
+ The following can command can be used to clean up these exchanges::
+
+ VHOST=/ URL=amqp:// python -c'import sys,kombu;[kombu.Connection(
+ sys.argv[-1]).channel().exchange_delete(x)
+ for x in sys.argv[1:-1]]' \
+ $(sudo rabbitmqctl -q list_exchanges -p "$VHOST" \
+ | grep \.pidbox | awk '{print $1}') "$URL"
+
+ The ``VHOST`` variable must be set to the target RabbitMQ virtual host,
+ and the URL must be the AMQP url for the server.
+
- The 'amqp' transport alias will now use :mod:`librabbitmq`
if installed.
@@ -84,6 +95,13 @@ News
but if so happens you could temporarily set the visibility timeout lower
to flush out messages when you start up the systems again.
+- Experimental `Apache ZooKeeper`_ transport
+
+ More information is in the module reference:
+ :mod:`kombu.transport.zookeeper`.
+
+ Contributed by Mahendra M.
+
- Redis: Priority support.
The message's ``priority`` field is now respected by the Redis