On Tue, Dec 08, 2015 at 10:44:07AM +0200, Yiannis Karayiannidis wrote: > How is it possible that the user made a retry > after exactly 3 minutes which is my timeout? > If you could see the timings it is 11:57:22 12:00:22
HAProxy timed out with the client's connection "cD" after 3 minutes. It's likely that the client restarted after receiving this close event. Anyway as Cyril said, your logs show that haproxy didn't retry since the retry counter is 0. Also, adjusting the retry count depending on the request type is pointless because haproxy never ever replays a request that was sent. The *only* case it can retry is if the connection setup failed. Once it succeeds, it will not retry. Retrying failed requests is purposely *not* implemented since it's neither RFC-compliant nor safe. Willy

