1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

* revert r355823 and r355837

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@355853 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ruediger Pluem
2005-12-11 01:28:13 +00:00
parent c666adbbae
commit 06c6bde4c6
4 changed files with 5 additions and 39 deletions

View File

@@ -758,20 +758,6 @@ static int proxy_handler(request_rec *r)
worker->s->status |= PROXY_WORKER_IN_ERROR;
}
}
else if (access_status == PROXY_BACKEND_BROKEN) {
/*
* If the backend broke after the headers had been sent do not
* try another worker, but leave. Do not mark the worker as
* unsuable as this problem may not reoccur on the next request.
*
* TODO: Currently we abort the connection and notify all parties
* on the upstream that something went wrong by setting c->aborted
* to 1. This idea is currently vetoed and should be replaced with
* other methods
*/
r->connection->aborted = 1;
break;
}
else {
/* Unrecoverable error.
* Return the origin status code to the client.