You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The session store currently performs a full set when a session object is unchanged. If the object is not changed we should only update the expiry rather than reposting the entire session object.
This will help avoid issues with the following case:
Start long running request
Destroy session in a separate request
Long running request finishes
With a full post of the session the long running request will put the session back in the store effectively cancelling out the session destroy.
The text was updated successfully, but these errors were encountered:
The session store currently performs a full set when a session object is unchanged. If the object is not changed we should only update the expiry rather than reposting the entire session object.
This will help avoid issues with the following case:
With a full post of the session the long running request will put the session back in the store effectively cancelling out the session destroy.
The text was updated successfully, but these errors were encountered: