HTTP request (GET) executed twice after RST TCP
I have a load balancer that is executing a reset in the TCP connections when I try to execute a PHP script which takes a long time to finish (400 sec). We are debugging this but the problem is that, when Firefox receives the RST, it executes the same query again. This can generate big problems. You can see the problem in the next Wireshark screenshot. Any idea about why Firefox is doing this?
Thank you in advance. Regards.
모든 댓글 (3)
I attach the Wireshark screenshot. Thanks!
See:
HTTP connections now have a response timeout
If your application is processing large data and affected by this change, you can change the value of the network.http.response.timeout preference to a larger number via about:config.
- Bug 947391 – HTTP connections (exc. XHR, SPDY) should have a response timeout
Thank you for your quick answer, cor-el. I knew about this parameter but the main problem is the second GET that Firefox executes automatically after receiving the TCP RST. The browser should not execute a second GET without user control, shouldn't it? This is strange but this behaviour is reproducible.
The PHP scripts execute some changes into a database. If the browser executes the HTTP request without user control this may produce an unexpected result.
Thank you!