~ubuntu-branches/ubuntu/utopic/cinder/utopic

« back to all changes in this revision

Viewing changes to cinder/openstack/common/rpc/amqp.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, James Page, Adam Gandelman, Chuck Short
  • Date: 2013-09-08 21:09:46 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20130908210946-3dbzq1jy5uji4wad
Tags: 1:2013.2~b3-0ubuntu1
[ James Page ]
* d/control: Switch ceph-common -> python-ceph inline with upstream
  refactoring of Ceph RBD driver, move to Suggests of python-cinder.
  (LP: #1190791). 

[ Adam Gandelman ]
* debian/patches/avoid_paramiko_vers_depends.patch: Dropped, no longer
  required.
* Add minimum requirement python-greenlet (>= 0.3.2).
* Add minimum requirement python-eventlet (>= 0.12.0).
* Add minimum requirement python-paramiko (>= 1.8).

[ Chuck Short ]
* New upstream release.
* debian/patches/skip-sqlachemy-failures.patch: Skip testfailures
  with sqlalchemy 0.8 until they are fixed upstream.
* debian/control: Add python-babel to build-depends.
* debian/control: Add python-novaclient to build-depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
from cinder.openstack.common.rpc import common as rpc_common
47
47
 
48
48
 
49
 
# TODO(pekowski): Remove this option in Havana.
50
49
amqp_opts = [
 
50
    # TODO(pekowski): Remove this option in Havana.
51
51
    cfg.BoolOpt('amqp_rpc_single_reply_queue',
52
52
                default=False,
53
53
                help='Enable a fast single reply queue if using AMQP based '
54
54
                'RPC like RabbitMQ or Qpid.'),
 
55
    cfg.BoolOpt('amqp_durable_queues',
 
56
                default=False,
 
57
                deprecated_name='rabbit_durable_queues',
 
58
                deprecated_group='DEFAULT',
 
59
                help='Use durable queues in amqp.'),
 
60
    cfg.BoolOpt('amqp_auto_delete',
 
61
                default=False,
 
62
                help='Auto-delete queues in amqp.'),
55
63
]
56
64
 
57
65
cfg.CONF.register_opts(amqp_opts)