I noticed that the system has a default timeout, i.e., after certain time the user will be automatically logged out. Is it possible to configure this so that the user will never be logged out automatically?
Thanks a lot!
You need to be logged in to post messages
By Kumo Mori
I noticed that the system has a default timeout, i.e., after certain time the user will be automatically logged out. Is it possible to configure this so that the user will never be logged out automatically?
Thanks a lot!
The default minutes is defined by a web application in the web.xml file (located in WEB-INF).
Here's the setting to look for:
<session-config>
<session-timeout>60</session-timeout>
</session-config>
If you need something else, then change it here. Later on this could be added to the Team Elements web-based configuration.