From: wessels <> Date: Tue, 11 Jan 2000 11:58:03 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~2085 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f726e966f5da1e9f040236ecb30757dbbf58b211;p=thirdparty%2Fsquid.git DW: - fwdConnectStart should be a lightweight event. If not, and Squid gets really busy, it prevents other critical events from running often enough. --- diff --git a/src/forward.cc b/src/forward.cc index c5c6e7622e..5998830a52 100644 --- a/src/forward.cc +++ b/src/forward.cc @@ -1,6 +1,6 @@ /* - * $Id: forward.cc,v 1.67 1999/12/30 17:36:32 wessels Exp $ + * $Id: forward.cc,v 1.68 2000/01/11 04:58:03 wessels Exp $ * * DEBUG: section 17 Request Forwarding * AUTHOR: Duane Wessels @@ -142,7 +142,7 @@ fwdServerClosed(int fd, void *data) fs->next = NULL; } /* use eventAdd to break potential call sequence loops */ - eventAdd("fwdConnectStart", fwdConnectStart, fwdState, 0.0, 1); + eventAdd("fwdConnectStart", fwdConnectStart, fwdState, 0.0, 0); } else { fwdStateFree(fwdState); }