Fix deprecated_group of rpc_conn_pool_size

When rpc_conn_pool_size have been moved from amqp.py to base.py:

  87137e7af05f12a99bd04566036fbf71824f45cf

We loose the deprecated_group, this change reintroduces it.

Change-Id: I8cdea7f042afebcc162bafef881ebe61a1cac989
This commit is contained in:
Mehdi Abaakouk 2015-05-27 13:06:38 +02:00
parent cf98f07f1f
commit 18c32bc30c

View File

@ -23,6 +23,7 @@ from oslo_messaging import exceptions
base_opts = [
cfg.IntOpt('rpc_conn_pool_size',
default=30,
deprecated_group='DEFAULT',
help='Size of RPC connection pool.'),
]