Hello, I am investigating some issues related to the roughly simultaneous chrome reuse and server-side close of a HTTP/1.1 keepalive connection on an XHR POST.
Does chromium parse the Keep-Alive response header to setup a max TTL on connections put into the pool to try to avoid these races? Any hints about where i could see this in the chromium source if there is anything like this?
I am familiar with this (
https://bugs.chromium.org/p/chromium/issues/detail?id=377581) change where a 408 response in place of a connection closure can be used to help this kind of race, but for the moment I am focusing on how we might be able to avoid the race.
Thanks.