From: Sander Striker Date: Tue, 8 Feb 2005 23:57:50 +0000 (+0000) Subject: * modules/proxy/proxy_util.c X-Git-Tag: 2.1.3~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b9a0e8388f345a303f83d009193c9044a2009db;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- 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;