/lib/admin/secure_web.rb the Rack::Session::expire_after value is set to 60 seconds.
In lib/admin/web.rb it looks like you are trying to reset the session expiration = ssl_max_session_idle_length
env['rack.session.options'][:expire_after] = @config.ssl_max_session_idle_length.to_i if @config.secured_client_connection
but that line of code doesn't run until after the session has already expired so, immediately after resetting the session expiration value the session is destroyed and a new one established with the 60 second value.
Please see the attached log file for an example of this behavior.
admin_ui.log
/lib/admin/secure_web.rb the Rack::Session::expire_after value is set to 60 seconds.
In lib/admin/web.rb it looks like you are trying to reset the session expiration = ssl_max_session_idle_length
env['rack.session.options'][:expire_after] = @config.ssl_max_session_idle_length.to_i if @config.secured_client_connection
but that line of code doesn't run until after the session has already expired so, immediately after resetting the session expiration value the session is destroyed and a new one established with the 60 second value.Please see the attached log file for an example of this behavior. admin_ui.log