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

UDS subsequent request on a connection fix

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1513508 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Ruggeri
2013-08-13 14:35:47 +00:00
parent 5ec0d34a46
commit 1ac1fb2e31

View File

@@ -2119,7 +2119,7 @@ ap_proxy_determine_connection(apr_pool_t *p, request_rec *r,
* spilling the cached addr from the worker.
*/
if (!conn->hostname || !worker->s->is_address_reusable ||
worker->s->disablereuse) {
worker->s->disablereuse || strncmp(conn->hostname, "socket=", 7) == 0) {
if (proxyname) {
conn->hostname = apr_pstrdup(conn->pool, proxyname);
conn->port = proxyport;