Deprecate the OPENSTACK_TOKEN_HASH_ENABLED option

Hashing PKI tokens is now working again, and Keystone will soon
deprecate usage of PKI tokens. Remove this option, as it's now
superfluous.

Change-Id: Ie67000ac20915ac12056a1a0aed13f6731a1c3c9
Closes-Bug: #1502472
This commit is contained in:
Brad Pokorny 2016-02-24 03:23:10 -08:00
parent a5e8a9153b
commit bf9ad6048d
2 changed files with 6 additions and 6 deletions

View File

@ -1370,6 +1370,8 @@ library.
.. versionadded:: 8.0.0(Liberty)
(Deprecated)
Default: ``True``
Hashing tokens from Keystone keeps the Horizon session data smaller, but it
@ -1377,6 +1379,10 @@ doesn't work in some cases when using PKI tokens. Uncomment this value and
set it to False if using PKI tokens and there are 401 errors due to token
hashing.
This option is now marked as "deprecated" and will be removed in Ocata or a
later release. PKI tokens currently work with hashing, and Keystone will soon
deprecate usage of PKI tokens.
``POLICY_FILES``
----------------

View File

@ -714,12 +714,6 @@ SECURITY_GROUP_RULES = {
# algorithms supported by Python's hashlib library.
#OPENSTACK_TOKEN_HASH_ALGORITHM = 'md5'
# Hashing tokens from Keystone keeps the Horizon session data smaller, but it
# doesn't work in some cases when using PKI tokens. Uncomment this value and
# set it to False if using PKI tokens and there are 401 errors due to token
# hashing.
#OPENSTACK_TOKEN_HASH_ENABLED = True
# AngularJS requires some settings to be made available to
# the client side. Some settings are required by in-tree / built-in horizon
# features. These settings must be added to REST_API_REQUIRED_SETTINGS in the