instance method
stale_session_check!
Ruby on Rails 4.0.13
Since v3.1.12Signature
stale_session_check!()
No documentation comment.
Source
# 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 =~ %r{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
Defined in actionpack/lib/action_dispatch/middleware/session/abstract_store.rb line 50
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Session::StaleSessionCheck