From 0b68976ecf09f49305939c636e222f325897d56f Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Mon, 30 Sep 2013 01:22:17 -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 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; } -- 2.47.2