From: Roman Arutyunyan Date: Mon, 15 Mar 2021 13:25:54 +0000 (+0300) Subject: HTTP/3: fixed $connection_requests. X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=7d1cf8ffb442727bc8e54630dd565c8139cead67;p=nginx.git HTTP/3: fixed $connection_requests. Previously, the value was always "1". --- diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index b997c29a1..4dc673078 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -165,6 +165,7 @@ ngx_http_v3_init(ngx_connection_t *c) * cscf->large_client_header_buffers.num; c->data = r; + c->requests = n + 1; rev = c->read; rev->handler = ngx_http_v3_process_request;