Skip to content

Commit

Permalink
Fixes bug 914418
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Monsyne Dragon committed Jan 26, 2012
1 parent 9ca8654 commit 2a84685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/rpc/amqp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 2a84685

Please sign in to comment.