Merge "Deprecate the identity-feature-enabled.reseller config option."

This commit is contained in:
Jenkins 2017-01-08 06:51:59 +00:00 committed by Gerrit Code Review
commit 1a76ea2215
2 changed files with 13 additions and 2 deletions

@ -0,0 +1,8 @@
---
upgrade:
- The default value for the ``reseller`` option in the
``identity-feature-enabled`` section has been changed from ``False``
to ``True``.
deprecations:
- The ``reseller`` option in the ``identity-feature-enabled`` section is now
deprecated.

@ -220,8 +220,11 @@ IdentityFeatureGroup = [
# TODO(rodrigods): Remove the reseller flag when Kilo and Liberty is end
# of life.
cfg.BoolOpt('reseller',
default=False,
help='Does the environment support reseller?'),
default=True,
help='Does the environment support reseller?',
deprecated_for_removal=True,
deprecated_reason="All supported version of OpenStack now "
"supports the 'reseller' feature"),
cfg.BoolOpt('security_compliance',
default=False,
help='Does the environment have the security compliance '