Merge "Fixed keystone rotations"

This commit is contained in:
Zuul 2020-08-24 18:18:40 +00:00 committed by Gerrit Code Review
commit 3ec3da5172

View File

@ -31,7 +31,7 @@ MEMCACHED = True
TOKEN_EXPIRATION = 86400
FERNET_ROTATION_INTERVAL = 3600
ACTIVE_KEYS = int(TOKEN_EXPIRATION / FERNET_ROTATION_INTERVAL)
ACTIVE_KEYS = int(TOKEN_EXPIRATION / FERNET_ROTATION_INTERVAL) + 2
def _is_keystone_deployment(name, **_):