~hudson-openstack/nova/trunk

« back to all changes in this revision

Viewing changes to nova/rpc.py

  • Committer: Ewan Mellor
  • Date: 2010-08-09 11:10:27 UTC
  • mfrom: (212 trunk)
  • mto: (145.4.1 add-contains)
  • mto: This revision was merged to the branch mainline in revision 221.
  • Revision ID: ewan.mellor@citrix.com-20100809111027-xbdyu44l6nb68bvp
Merged with trunk again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
238
238
                                      exchange=msg_id,
239
239
                                      auto_delete=True,
240
240
                                      exchange_type="direct",
241
 
                                      routing_key=msg_id,
242
 
                                      durable=False)
 
241
                                      routing_key=msg_id)
243
242
        consumer.register_callback(generic_response)
244
243
 
245
244
    publisher = messaging.Publisher(connection=Connection.instance(),
246
245
                                    exchange=FLAGS.control_exchange,
 
246
                                    durable=False,
247
247
                                    exchange_type="topic",
248
248
                                    routing_key=topic)
249
249
    publisher.send(message)