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.
This commit is contained in:
Chris Behrens 2011-06-30 17:52:04 -07:00
parent 93ef6f6cf8
commit 90dcf88e48
1 changed files with 0 additions and 1 deletions

View File

@ -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)