Fixes bug 914418

This turns out not to actually be a case of using the wrong exchange, rather
it is that the exchange's 'durable' flag does not match the queue if FLAGS.durable is set to 'False'.

Change-Id: I69ac7e84ac02a72dd204fa3aa27e73637594f509
This commit is contained in:
Monsyne Dragon
2012-01-26 19:57:32 +00:00
parent ef68ecfdf4
commit a82804272f

View File

@@ -352,4 +352,4 @@ def notify(context, topic, msg):
LOG.debug(_('Sending notification on %s...'), topic)
pack_context(msg, context)
with ConnectionContext() as conn:
conn.notify_send(topic, msg, durable=True)
conn.notify_send(topic, msg)