Merge branch 'hotfix/redis-session-timeout' into 'release'
Increasing the redis inactive session timeout to 30 days Now when a user doesn't log into the Appsmith system for 30 days, they will get logged out. See merge request theappsmith/internal-tools-server!144
This commit is contained in:
commit
6e5a73ba1b
|
|
@ -14,8 +14,8 @@ import org.springframework.session.data.redis.config.annotation.web.server.Enabl
|
|||
|
||||
@Configuration
|
||||
@Slf4j
|
||||
// Setting the maxInactiveInterval to 1 day
|
||||
@EnableRedisWebSession(maxInactiveIntervalInSeconds = 86400)
|
||||
// Setting the maxInactiveInterval to 30 days
|
||||
@EnableRedisWebSession(maxInactiveIntervalInSeconds = 2592000)
|
||||
public class RedisConfig {
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user