Squid-2.3.DEVEL2: async-io is a bit keen on warn on thread usage Async-IO is a bit keen on give a warning about thread usage. This patch increases the burst filter threashold a little bit. Hopefylly I will find time to address this at the real root of the problem (bursty store recycling) in the near future. Index: squid/src/aiops.c diff -u squid/src/aiops.c:1.1.1.17 squid/src/aiops.c:1.1.1.17.2.1 --- squid/src/aiops.c:1.1.1.17 Sat Aug 7 17:13:14 1999 +++ squid/src/aiops.c Sat Aug 7 22:45:58 1999 @@ -352,7 +352,7 @@ if (request_queue_len < queue_low) queue_low = request_queue_len; if (squid_curtime >= (last_warn + 15) && - squid_curtime >= (high_start + 1)) { + squid_curtime >= (high_start + 3)) { debug(43, 1) ("aio_queue_request: WARNING - Running out of I/O threads\n"); debug(43, 2) ("aio_queue_request: Queue Length: current=%d, high=%d, low=%d, duration=%d\n", request_queue_len, queue_high, queue_low, squid_curtime - high_start);