From 90dcf88e48ceaa627eb56c90c2f483aac19a9b3a Mon Sep 17 00:00:00 2001 From: Chris Behrens Date: Thu, 30 Jun 2011 17:52:04 -0700 Subject: [PATCH] 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. --- nova/rpc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nova/rpc.py b/nova/rpc.py index 29cb3044b4aa..f52f377b0775 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)