Skip to content

Commit

Permalink
Merge pull request #139 from cho4036/develop
Browse files Browse the repository at this point in the history
bug fix: change sso_session_idle_timeout time 8hours -> 1day
  • Loading branch information
ktkfree authored Aug 17, 2023
2 parents 335f17c + 476f1ea commit 9b5f1f7
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 9b5f1f7

Please sign in to comment.