From 06c23b4dc25cdef0f8a20377c25194c5d01d0629 Mon Sep 17 00:00:00 2001 From: Marshall Date: Fri, 12 Jun 2026 12:36:49 -0400 Subject: [PATCH] DONT MERGE: Update default token lifetime and rotation interval Increased default token lifetime and rotation interval as a work around for JMS issue --- pat_rotator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pat_rotator.py b/pat_rotator.py index cc8734f..354e678 100644 --- a/pat_rotator.py +++ b/pat_rotator.py @@ -18,8 +18,8 @@ logger = logging.getLogger(__name__) -DEFAULT_TOKEN_LIFETIME = 900 # 15 minutes -DEFAULT_ROTATION_INTERVAL = 600 # 10 minutes +DEFAULT_TOKEN_LIFETIME = 9000 # 150 minutes +DEFAULT_ROTATION_INTERVAL = 6000 # 100 minutes class PATRotator: