From d33e2be3f4fd8549174bcda22200a578f75cad17 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Thu, 3 Oct 2013 05:18:10 -0600 Subject: [PATCH] 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. --- src/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2