Merge lp:~cbehrens/nova/lp804134 into lp:~hudson-openstack/nova/trunk

Proposed by Chris Behrens
Status: Merged
Approved by: Josh Kearney
Approved revision: 1239
Merged at revision: 1239
Proposed branch: lp:~cbehrens/nova/lp804134
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 9 lines (+0/-1)
1 file modified
nova/rpc.py (+0/-1)
To merge this branch: bzr merge lp:~cbehrens/nova/lp804134
Reviewer Review Type Date Requested Status
Josh Kearney (community) Approve
Ed Leafe (community) Approve
Review via email: mp+66534@code.launchpad.net

Description of the change

Ensure auto-delete is false on Topic Queues.

To post a comment you must log in.
Revision history for this message
Ed Leafe (ed-leafe) wrote :

Whoops, my bad.

review: Approve
Revision history for this message
Josh Kearney (jk0) wrote :

lgtm!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'nova/rpc.py'
2--- nova/rpc.py 2011-06-30 20:50:31 +0000
3+++ nova/rpc.py 2011-07-01 01:22:27 +0000
4@@ -348,7 +348,6 @@
5 self.routing_key = topic
6 self.exchange = FLAGS.control_exchange
7 self.durable = False
8- self.auto_delete = True
9 super(TopicPublisher, self).__init__(connection=connection)
10
11