-
Notifications
You must be signed in to change notification settings - Fork 385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cookie Expire updates being ignored #9
Comments
Gary, It seems as though your expectation is in line with the standard. The last Jeff On Mon, Apr 27, 2015 at 6:05 AM, Gary Bake notifications@github.com wrote:
|
Thank you for the prompt response. |
When we login to an application it sends the response with a cookie that times out after half an hour
Set-Cookie:session-key=xxxx;Path=/;Expires=Mon, 04-May-2015 09:58:27 GMT;Max-Age=604800
During subsequent requests the server updates the cookie to keep moving the expire half an hour forward.
Set-Cookie:session-key=xxxx;Path=/;Expires=Mon, 04-May-2015 10:00:52 GMT;Max-Age=604800
This means that the users session will expire after half an hour of inactivity.
Using siege to test the application I start getting 401 responses after half an hour, when due to requests being sent it should keep the users session active.
(I use the normal login setup in .siegerc)
This looks like siege is creating the cookie ok but ignoring future requests to update the timeout.
The text was updated successfully, but these errors were encountered: