diff options
author | Stefan Eissing <icing@apache.org> | 2017-04-10 15:23:03 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2017-04-10 15:23:03 +0200 |
commit | e643f77747aae6a7db366504d399ac976959c506 (patch) | |
tree | 512e8f81586744786fc49833b82338978fcf0298 | |
parent | On the trunk: (diff) | |
download | apache2-e643f77747aae6a7db366504d399ac976959c506.tar.xz apache2-e643f77747aae6a7db366504d399ac976959c506.zip |
On the trunk:
mod_proxy_http2: 1 is true.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1790827 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/http2/mod_proxy_http2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/mod_proxy_http2.c b/modules/http2/mod_proxy_http2.c index 86a8c3dc5e..403f9015e2 100644 --- a/modules/http2/mod_proxy_http2.c +++ b/modules/http2/mod_proxy_http2.c @@ -635,7 +635,7 @@ cleanup: /* Any requests will still have need to fail */ while (APR_SUCCESS == h2_proxy_fifo_try_pull(ctx->requests, (void**)&r)) { - request_done(ctx, r, HTTP_SERVICE_UNAVAILABLE, true); + request_done(ctx, r, HTTP_SERVICE_UNAVAILABLE, 1); } ap_set_module_config(ctx->owner->conn_config, &proxy_http2_module, NULL); |