Deprecate the forbid_global_implied_dsr cfg option

The config option ``forbid_global_implied_dsr`` from the ``IdentityFeature``
group is now deprecated. This feature flag was introduced to support
testing of old OpenStack versions which are not supported anymore.

Change-Id: Ib5dbb2e4a5d3d05a18e30b890b316c0669bf4229
This commit is contained in:
Jordan Pittier 2017-04-23 12:44:37 +02:00
parent 4f97537a51
commit bd391dc5d9
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
deprecations:
- The config option ``forbid_global_implied_dsr`` from the ``IdentityFeature``
group is now deprecated. This feature flag was introduced to support
testing of old OpenStack versions which are not supported anymore.

View File

@ -223,7 +223,11 @@ IdentityFeatureGroup = [
cfg.BoolOpt('forbid_global_implied_dsr',
default=False,
help='Does the environment forbid global roles implying '
'domain specific ones?'),
'domain specific ones?',
deprecated_for_removal=True,
deprecated_reason="This feature flag was introduced to "
"support testing of old OpenStack versions, "
"which are not supported anymore"),
cfg.BoolOpt('security_compliance',
default=False,
help='Does the environment have the security compliance '