From: Amos Jeffries Date: Thu, 3 Oct 2013 11:18:10 +0000 (-0600) Subject: Polish: better WARNING when workers directive is ignore on reconfigure. X-Git-Tag: SQUID_3_3_10~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d33e2be3f4fd8549174bcda22200a578f75cad17;p=thirdparty%2Fsquid.git Polish: better WARNING when workers directive is ignore on reconfigure. Changing the workers directive requires a proxy restart, not just a reconfigure. State this clearly in the warning message. --- diff --git a/src/main.cc b/src/main.cc index 9c5d232ed9..8da6920b17 100644 --- a/src/main.cc +++ b/src/main.cc @@ -808,7 +808,7 @@ mainReconfigureFinish(void *) if (oldWorkers != Config.workers) { debugs(1, DBG_CRITICAL, "WARNING: Changing 'workers' (from " << oldWorkers << " to " << Config.workers << - ") is not supported and ignored"); + ") requires a full restart. It has been ignored by reconfigure."); Config.workers = oldWorkers; }