method
stale_session_check!
v4.0.2 -
Show latest stable
- Class:
ActionDispatch::Session::StaleSessionCheck
stale_session_check!()public
No documentation available.
# File actionpack/lib/action_dispatch/middleware/session/abstract_store.rb, line 50
def stale_session_check!
yield
rescue ArgumentError => argument_error
if argument_error.message =~ %{undefined class/module ([\w:]*\w)}
begin
# Note that the regexp does not allow $1 to end with a ':'
$1.constantize
rescue LoadError, NameError => e
raise ActionDispatch::Session::SessionRestoreError, e, e.backtrace
end
retry
else
raise
end
end