connect.support.idle.delay does not trigger if the time is less than glide.ui.session_timeoutSummaryIf the time defined in the property connect.support.idle.delay is less than glide.ui.session_timeout, the chat session does not get timed out.ReleaseAll supported releasesInstructionsglide.ui.session_timeout will always have a higher precedence than connect.support.idle.delay. The property glide.ui.session_timeout checks if the user has an active session running. In any situation, properties are triggered for users only if they have any active ongoing session. Once the session times out happens, connect.support.idle.delay will not kick in because the property is dependent only on active sessions. If there are no active sessions for a user, the property will not be triggered. Let's consider the below scenario: connect.support.idle.delay (in secs) is set to 600 - which is 10 mins.glide.ui.session_timeout (in mins) is set to 5 (mins) In the above case, the instance session will get terminated is no activity is done for 5 mins. Therefore connect.support.idle.delay will not trigger. Now if the user logs in back after another 30 mins, the chat will be still active.Related LinksResolution: 1. Set the glide.ui.session_timeout & connect.support.idle.delay both to same time in seconds.2. Reduce the connect.support.idle.delay (in secs) below the glide.ui.session_timeout (in mins) values.