Certain HTTP response headers are not returned correctly when performing http requests in sequence. Specifically, the "Set-Cookie" header will copy the previous request's correct header value
Version: 2015.08.12
Issue with: All HTTP requests that depend upon the HTTP global function
Example:
Request 1 Server Response:
Request 1's returned Set-Cookie header: foo=13
Request 2 Server Response:
Request 2's returned Set-Cookie header: foo=13
Request 3 Server Response:
Request 3's returned Set-Cookie header: barr=42
Request 4 Server Response:
Request 4's returned Set-Cookie header: tazz=bizz
etc.