From: Alex Rousskov Date: Tue, 12 Jun 2012 14:41:36 +0000 (-0600) Subject: Bug 3561: cbdata cookie assertion after bug #3505 fix. X-Git-Tag: BumpSslServerFirst.take09~3^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38a9f55;p=thirdparty%2Fsquid.git Bug 3561: cbdata cookie assertion after bug #3505 fix. --- diff --git a/src/comm/ConnOpener.cc b/src/comm/ConnOpener.cc index 0ed365198a..f8d464fbe8 100644 --- a/src/comm/ConnOpener.cc +++ b/src/comm/ConnOpener.cc @@ -261,7 +261,7 @@ Comm::ConnOpener::connect() doneConnecting(COMM_TIMEOUT, errno); } else if (failRetries_ < Config.connect_retries) { debugs(5, 5, HERE << conn_ << ": * - try again"); - eventAdd("Comm::ConnOpener::DelayedConnectRetry", Comm::ConnOpener::DelayedConnectRetry, new Pointer(this), 0.05, 0); + eventAdd("Comm::ConnOpener::DelayedConnectRetry", Comm::ConnOpener::DelayedConnectRetry, new Pointer(this), 0.05, 0, false); return; } else { // send ERROR back to the upper layer.