Fixed keystone rotations

Change-Id: Icfdbbbde2df732840ab320f128759473f6fb43fc
This commit is contained in:
Mohammed Naser 2020-08-24 13:10:00 -04:00
parent 0b8ebbe7ae
commit c1cfe06e8c
1 changed files with 1 additions and 1 deletions

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, **_):