summaryrefslogtreecommitdiff
path: root/oslo_messaging/opts.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-01-05 18:34:15 +0100
committerGauvain Pocentek <gauvain.pocentek@objectif-libre.com>2016-01-05 21:00:33 +0100
commit87e06d97be54698e42c21aa5dc5ee4a487cee47e (patch)
tree6c278969315d3c14dbed4733a7684ec90d7f3706 /oslo_messaging/opts.py
parent817cb0c8abefcbeb841331c6dc864a9566ccf8a5 (diff)
downloadoslo-messaging-87e06d97be54698e42c21aa5dc5ee4a487cee47e.tar.gz
list_opts: update the notification options group
The group is still DEFAULT at the moment, but the correct group is oslo_messaging_notifications. Sample configurations files generated with the oslo.config tools are invalid due to this incorrect group. Change-Id: Idc6c52f4b15dfff6e8d6b4a2ef9f5598bb3468cd Closes-Bug: #1531219
Diffstat (limited to 'oslo_messaging/opts.py')
-rw-r--r--oslo_messaging/opts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_messaging/opts.py b/oslo_messaging/opts.py
index 263c59f..31ced25 100644
--- a/oslo_messaging/opts.py
+++ b/oslo_messaging/opts.py
@@ -36,7 +36,6 @@ _global_opt_lists = [
impl_zmq.zmq_opts,
matchmaker_redis.matchmaker_redis_opts,
impl_pooledexecutor._pool_opts,
- notifier._notifier_opts,
client._client_opts,
transport._transport_opts,
]
@@ -45,6 +44,7 @@ _opts = [
(None, list(itertools.chain(*_global_opt_lists))),
('matchmaker_redis', matchmaker_redis.matchmaker_redis_opts),
('oslo_messaging_amqp', amqp_opts.amqp1_opts),
+ ('oslo_messaging_notifications', notifier._notifier_opts),
('oslo_messaging_rabbit', list(itertools.chain(amqp.amqp_opts,
impl_rabbit.rabbit_opts))),
]