~soren/nova/logdir-flag

« back to all changes in this revision

Viewing changes to nova/rpc.py

  • Committer: Tarmac
  • Author(s): Eric Day
  • Date: 2010-11-03 23:04:01 UTC
  • mfrom: (394.2.1 lp640400)
  • Revision ID: hudson@openstack.org-20101103230401-qgkweuk4jik7v7ku
Enables the exclusive flag for DirectConsumer queues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
        self.routing_key = msg_id
207
207
        self.exchange = msg_id
208
208
        self.auto_delete = True
 
209
        self.exclusive = True
209
210
        super(DirectConsumer, self).__init__(connection=connection)
210
211
 
211
212