From a82804272fcac972519e7cfe477ae166d6dc5c8d Mon Sep 17 00:00:00 2001 From: Monsyne Dragon Date: Thu, 26 Jan 2012 19:57:32 +0000 Subject: [PATCH] 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 --- nova/rpc/amqp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/rpc/amqp.py b/nova/rpc/amqp.py index 68f7a1e8..92f1478b 100644 --- a/nova/rpc/amqp.py +++ b/nova/rpc/amqp.py @@ -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)