# HG changeset patch # User Roman Arutyunyan # Date 1615814754 -10800 # Node ID a64255c01dab22afaa2632ef3995174407ad76a7 # Parent 55aabb7269e7a510896b1f04b77df47a94b0ca60 HTTP/3: fixed $connection_requests. Previously, the value was always "1". diff -r 55aabb7269e7 -r a64255c01dab src/http/v3/ngx_http_v3_request.c --- a/src/http/v3/ngx_http_v3_request.c Mon Mar 22 15:51:14 2021 +0300 +++ b/src/http/v3/ngx_http_v3_request.c Mon Mar 15 16:25:54 2021 +0300 @@ -165,6 +165,7 @@ * cscf->large_client_header_buffers.num; c->data = r; + c->requests = n + 1; rev = c->read; rev->handler = ngx_http_v3_process_request;