mirror of
https://github.com/apache/httpd.git
synced 2025-08-15 23:27:39 +00:00
* modules/proxy/mod_proxy_ajp.c
(proxy_ajp_handler): Log error when a backend connection could not be made. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@152966 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -429,6 +429,9 @@ static int proxy_ajp_handler(request_rec *r, proxy_worker *worker,
|
||||
goto cleanup;
|
||||
/* Step Two: Make the Connection */
|
||||
if (ap_proxy_connect_backend(scheme, backend, worker, r->server)) {
|
||||
ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
|
||||
"proxy: AJP: failed to make connection to backend: %s",
|
||||
backend->hostname);
|
||||
status = HTTP_SERVICE_UNAVAILABLE;
|
||||
goto cleanup;
|
||||
}
|
||||
|
Reference in New Issue
Block a user