From: Amos Jeffries Date: Mon, 30 Sep 2013 07:22:17 +0000 (-0600) Subject: Polish: better WARNING when workers directive is ignore on reconfigure. X-Git-Tag: SQUID_3_5_0_1~623 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b68976ecf09f49305939c636e222f325897d56f;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 469c5d6184..7e8ff6ade8 100644 --- a/src/main.cc +++ b/src/main.cc @@ -804,7 +804,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; }