Merge "Make transport_url config option secret"

This commit is contained in:
Jenkins 2016-04-07 15:05:22 +00:00 committed by Gerrit Code Review
commit 55c0b3b52f
2 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ _notifier_opts = [
cfg.StrOpt('transport_url',
deprecated_name='notification_transport_url',
deprecated_group='DEFAULT',
secret=True,
help='A URL representing the messaging driver to use for '
'notifications. If not set, we fall back to the same '
'configuration used for RPC.'),

View File

@ -37,6 +37,7 @@ from oslo_messaging import exceptions
_transport_opts = [
cfg.StrOpt('transport_url',
secret=True,
help='A URL representing the messaging driver to use and its '
'full configuration. If not set, we fall back to the '
'rpc_backend option and driver specific configuration.'),