Skip to content

Commit

Permalink
minor fix: change sso_session_idle_timeout time 8hours -> 1day
Browse files Browse the repository at this point in the history
  • Loading branch information
cho4036 committed Aug 17, 2023
1 parent 335f17c commit 476f1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/keycloak/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ const (
DefaultClientSecret = "secret"
AdminCliClientID = "admin-cli"
accessTokenLifespan = 60 * 60 * 24 // 1 day
ssoSessionIdleTimeout = 60 * 60 * 8 // 8 hours
ssoSessionIdleTimeout = 60 * 60 * 24 // 1 day
ssoSessionMaxLifespan = 60 * 60 * 24 // 1 day
)

0 comments on commit 476f1ea

Please sign in to comment.