Merge "Add rel note and example for TOKEN_DELETE_DISABLED"

This commit is contained in:
Jenkins 2016-08-30 21:32:20 +00:00 committed by Gerrit Code Review
commit 3bfb4bbdff
3 changed files with 19 additions and 0 deletions

View File

@ -1131,6 +1131,16 @@ Example::
.. note::
The value is expected to be a tuple formatted as: (<idp_id>, <protocol_id>).
``TOKEN_DELETE_DISABLED``
-------------------------
.. versionadded:: 10.0.0(Newton)
Default: ``False``
This setting allows deployers to control whether a token is deleted on log out.
This can be helpful when there are often long running processes being run
in the Horizon environment.
``OPENSTACK_CINDER_FEATURES``
-----------------------------

View File

@ -222,6 +222,11 @@ OPENSTACK_KEYSTONE_BACKEND = {
# allowing Admin session password retrieval/decryption.
#OPENSTACK_ENABLE_PASSWORD_RETRIEVE = False
# This setting allows deployers to control whether a token is deleted on log
# out. This can be helpful when there are often long running processes being
# run in the Horizon environment.
#TOKEN_DELETE_DISABLED = False
# The Launch Instance user experience has been significantly enhanced.
# You can choose whether to enable the new launch instance experience,
# the legacy experience, or both. The legacy experience will be removed

View File

@ -0,0 +1,4 @@
---
features:
- Added the ``TOKEN_DELETE_DISABLED`` setting, so that deployers can
customise the revocation of a users token on log out.