Deprecate 'deferred_auth_method' config option

As a precursor to removal of support for stored password based
deferred auth, deprecate the config option.

Change-Id: Ib97fa5ef62f52e305cb406f423d261b80088d8a6
This commit is contained in:
rabi 2017-06-23 10:31:05 +05:30
parent 4620a5f361
commit 9723b0dab7
1 changed files with 5 additions and 0 deletions

View File

@ -101,6 +101,11 @@ engine_opts = [
cfg.StrOpt('deferred_auth_method',
choices=['password', 'trusts'],
default='trusts',
deprecated_for_removal=True,
deprecated_reason='Stored password based deferred auth is '
'broken when used with keystone v3 and '
'is not supported.',
deprecated_since='9.0.0',
help=_('Select deferred auth method, '
'stored password or trusts.')),
cfg.StrOpt('reauthentication_auth_method',