This is an automated email from the ASF dual-hosted git repository.

adutra pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 24c89c636 Fix the Keycloak getting-started example for 26.5+ (#3568)
24c89c636 is described below

commit 24c89c63680b492e7c5fb5d0e295f6bd07961cdb
Author: Alexandre Dutra <[email protected]>
AuthorDate: Tue Jan 27 17:42:23 2026 +0100

    Fix the Keycloak getting-started example for 26.5+ (#3568)
    
    The example was failing because Keycloak 26.5 introduced stricter 
validation rules for session lifespan and timeout.
---
 getting-started/assets/keycloak/iceberg-realm.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/getting-started/assets/keycloak/iceberg-realm.json 
b/getting-started/assets/keycloak/iceberg-realm.json
index da5c49831..92974aa0c 100644
--- a/getting-started/assets/keycloak/iceberg-realm.json
+++ b/getting-started/assets/keycloak/iceberg-realm.json
@@ -356,9 +356,9 @@
         "acr.loa.map": "{}",
         "display.on.consent.screen": "false",
         "client.offline.session.max.lifespan": "86400",
-        "client.session.max.lifespan": "86400",
+        "client.session.max.lifespan": "36000",
         "token.response.type.bearer.lower-case": "false",
-        "client.session.idle.timeout": "86400"
+        "client.session.idle.timeout": "1800"
       },
       "authenticationFlowBindingOverrides": {},
       "fullScopeAllowed": true,

Reply via email to