Methods
Instance Public methods
extract_session_id(env)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/session/abstract_store.rb, line 48
def extract_session_id(env)
stale_session_check! { super }
end
🔎 See on GitHub
load_session(env)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/session/abstract_store.rb, line 44
def load_session(env)
stale_session_check! { super }
end
🔎 See on GitHub
stale_session_check!()
📝 Source code
# File actionpack/lib/action_dispatch/middleware/session/abstract_store.rb, line 52
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
raise ActionDispatch::Session::SessionRestoreError
end
retry
else
raise
end
end
🔎 See on GitHub