diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-04-14 15:05:48 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-04-14 15:05:48 +0200 |
commit | e35a1a09d2c01eba1c30da8ce10ac604e47c7cd4 (patch) | |
tree | 99dc7eef4452ef32c7aef404f5635f3c89ef496c /modules/proxy/mod_proxy_ajp.c | |
parent | try to prevent a single long request marking a worker in error. (diff) | |
download | apache2-e35a1a09d2c01eba1c30da8ce10ac604e47c7cd4.tar.xz apache2-e35a1a09d2c01eba1c30da8ce10ac604e47c7cd4.zip |
Fixed missing struct member error introduced with r1092076.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1092212 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/proxy/mod_proxy_ajp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index a54e03ea64..93dfefc83f 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -341,7 +341,7 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r, * we assume it is a request that cause a back-end timeout, * but doesn't affect the whole worker. */ - if (status == APR_TIMEUP && conn->worker->ping_timeout_set) { + if (status == APR_TIMEUP && conn->worker->s->ping_timeout_set) { return HTTP_GATEWAY_TIME_OUT; } |