summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Behrens <cbehrens@codestud.com>2011-06-30 17:52:04 -0700
committerChris Behrens <cbehrens@codestud.com>2011-06-30 17:52:04 -0700
commit90dcf88e48ceaa627eb56c90c2f483aac19a9b3a (patch)
tree87f10c1eddcc3b76e96c43a65f1070e19f02b2d1
parent93ef6f6cf8e4c7902f6533758f800577e0770dcb (diff)
Reverses the self.auto_delete = True that was added to TopicPublisher
in the bugfix for lp804063. That bugfix should have only added auto_delete = True to FanoutPublisher to match the previous change to FanoutConsumer. TopicConsumer isn't exclusive or auto_delete, so TopicPublisher has to still match.
-rw-r--r--nova/rpc.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/rpc.py b/nova/rpc.py
index 29cb3044b..f52f377b0 100644
--- a/nova/rpc.py
+++ b/nova/rpc.py
@@ -348,7 +348,6 @@ class TopicPublisher(Publisher):
self.routing_key = topic
self.exchange = FLAGS.control_exchange
self.durable = False
- self.auto_delete = True
super(TopicPublisher, self).__init__(connection=connection)