From ff2dfa3093d7c1fa3657a23a27d082320a9d6791 Mon Sep 17 00:00:00 2001 From: Shreyash kashid Date: Fri, 21 Aug 2026 17:51:18 +0530 Subject: [PATCH] AAP-84085: correct gateway ACCESS_TOKEN_EXPIRE_SECONDS default The gateway default is 1 year (31536000), not ~1000 years (31536000000). Signed-off-by: Shreyash kashid --- downstream/modules/platform/con-gw-manage-oauth2-provider.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/downstream/modules/platform/con-gw-manage-oauth2-provider.adoc b/downstream/modules/platform/con-gw-manage-oauth2-provider.adoc index 478ec89d1a..f6b79939e8 100644 --- a/downstream/modules/platform/con-gw-manage-oauth2-provider.adoc +++ b/downstream/modules/platform/con-gw-manage-oauth2-provider.adoc @@ -15,7 +15,7 @@ This change increases credential security through more frequent token rotation. + ---- { - "ACCESS_TOKEN_EXPIRE_SECONDS": 31536000000, + "ACCESS_TOKEN_EXPIRE_SECONDS": 31536000, "REFRESH_TOKEN_EXPIRE_SECONDS": 2628000, "AUTHORIZATION_CODE_EXPIRE_SECONDS": 600 }