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:
Arpit Mohan 2020-01-07 07:39:15 +00:00
commit 6e5a73ba1b

View File

@ -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 {
/**