From 7b9a0e8388f345a303f83d009193c9044a2009db Mon Sep 17 00:00:00 2001 From: Sander Striker Date: Tue, 8 Feb 2005 23:57:50 +0000 Subject: [PATCH] * modules/proxy/proxy_util.c (ap_proxy_pre_request): Log an error when all workers are busy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@152964 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 68c3bca32eb..ba277073f8c 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1355,6 +1355,9 @@ PROXY_DECLARE(int) ap_proxy_pre_request(proxy_worker **worker, } else if (access_status == DECLINED && balancer != NULL) { /* All the workers are busy */ + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, + "proxy: all workers are busy. Unable to serve %s", + *url); access_status = HTTP_SERVICE_UNAVAILABLE; } return access_status; -- 2.47.2