commit 2bca46599e24a394be959ed1ef0db7bff301b700 from: Stefan Sperling date: Wed Apr 16 11:59:14 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 - 3b8dccc5ebf6eaef854a522e02f0f98c93b153ea commit + 2bca46599e24a394be959ed1ef0db7bff301b700 blob - d3afc4bb0e9b2573b45e030fed2e911baafd4007 blob + ec8f3cd39176a31aaa064899b5c29e9349ea5329 --- gotwebd/fcgi.c +++ gotwebd/fcgi.c @@ -373,7 +373,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;