From 2a846859f4e1959660a6895bfbb6b8d5f87e14c3 Mon Sep 17 00:00:00 2001 From: Monsyne Dragon Date: Thu, 26 Jan 2012 19:57:32 +0000 Subject: 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 68f7a1e86..92f1478b0 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) -- cgit