summaryrefslogtreecommitdiffstats
path: root/nova/rpc
diff options
context:
space:
mode:
authorMonsyne Dragon <mdragon@rackspace.com>2012-01-26 19:57:32 +0000
committerMonsyne Dragon <mdragon@rackspace.com>2012-01-26 20:00:48 +0000
commit2a846859f4e1959660a6895bfbb6b8d5f87e14c3 (patch)
treebaea9337a3896748e6d18e67585c508ea32f78d1 /nova/rpc
parent9ca86546a2120db49e4122bc7a6b274e67a4de11 (diff)
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
Diffstat (limited to 'nova/rpc')
-rw-r--r--nova/rpc/amqp.py2
1 files changed, 1 insertions, 1 deletions
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)