From: Mladen Turk Date: Tue, 24 Aug 2004 13:48:13 +0000 (+0000) Subject: Do not check the balancer param. X-Git-Tag: STRIKER_2_1_0_RC1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9bee51adfd40666641e2badf66f29b6203fd960;p=thirdparty%2Fapache%2Fhttpd.git Do not check the balancer param. It is already checked prior the hook is called from mod_proxy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104791 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_balancer.c b/modules/proxy/proxy_balancer.c index c002f0d7a88..ba197ab36d4 100644 --- a/modules/proxy/proxy_balancer.c +++ b/modules/proxy/proxy_balancer.c @@ -370,9 +370,9 @@ static int proxy_balancer_post_request(proxy_worker *worker, PROXY_BALANCER_UNLOCK(balancer); access_status = OK; + ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, + "proxy_balancer_post_request for (%s)", balancer->name); } - ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, - "proxy_balancer_post_request for (%s)", balancer->name); return access_status; }