commit 454f533a210fb18a5bb2521e2b4f258a55f02341 from: Stefan Sperling via: Thomas Adam date: Thu Apr 17 19:06:29 2025 UTC reduce the send_response() timeout For some reason this timeout was blocking long enough to make other waiting client connections time out. Reduce the amount of retries. commit - 5d919269fb0147949da11b612b6f0862b2b8cb29 commit + 454f533a210fb18a5bb2521e2b4f258a55f02341 blob - 48cfc02fe727f8fe5a195933875ac5e673bed729 blob + a999d2129315ff4dd74778dfd89e78c858a974dd --- gotwebd/fcgi.c +++ gotwebd/fcgi.c @@ -375,7 +375,7 @@ send_response(struct request *c, int type, const uint8 struct timespec ts; ssize_t nw; size_t padded_len, tot; - int i, err = 0, th = 2000; + int i, err = 0, th = 20; ts.tv_sec = 0; ts.tv_nsec = 50;