diff options
| author | Monsyne Dragon <mdragon@rackspace.com> | 2012-01-26 19:57:32 +0000 |
|---|---|---|
| committer | Monsyne Dragon <mdragon@rackspace.com> | 2012-01-26 20:00:48 +0000 |
| commit | 2a846859f4e1959660a6895bfbb6b8d5f87e14c3 (patch) | |
| tree | baea9337a3896748e6d18e67585c508ea32f78d1 /nova/rpc | |
| parent | 9ca86546a2120db49e4122bc7a6b274e67a4de11 (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.py | 2 |
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) |
