Merge "Deprecation reason for domain_id_immutable"

This commit is contained in:
Jenkins 2016-04-16 22:49:59 +00:00 committed by Gerrit Code Review
commit 60073c4f11
1 changed files with 5 additions and 1 deletions

View File

@ -45,6 +45,9 @@ _DEPRECATE_EP_MSG = ('The option to enable the OS-ENDPOINT-POLICY extension '
'removed in the O release. The OS-ENDPOINT-POLICY '
'extension will be enabled by default.')
_DEPRECATE_DII_MSG = ('The option to set domain_id_immutable to false '
'has been deprecated in the M release and will '
'be removed in the O release.')
FILE_OPTIONS = {
None: [
@ -126,7 +129,8 @@ FILE_OPTIONS = {
'(see policy.v3cloudsample as an example). This '
'ability is deprecated and will be removed in a '
'future release.',
deprecated_for_removal=True),
deprecated_for_removal=True,
deprecated_reason=_DEPRECATE_DII_MSG),
cfg.BoolOpt('strict_password_check', default=False,
help='If set to true, strict password length checking is '
'performed for password manipulation. If a password '