]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: stats: Set conn-stream/channel EOI flags at the end of request
authorChristopher Faulet <cfaulet@haproxy.com>
Mon, 7 Mar 2022 14:52:42 +0000 (15:52 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Tue, 8 Mar 2022 17:24:16 +0000 (18:24 +0100)
This bug is the same than for the HTTP client. See "BUG/MINOR: httpclient:
Set conn-stream/channel EOI flags at the end of request" for details.

This patch must be backported as far as 2.0. But only CF_EOI must be set
because applets are not attached to a conn-stream on older versions.

src/stats.c

index f044588d48497a2994b9b48e47495f0dbc1a741a..ac36ebe0a52c7e1b540f5577193dcd02a4ad9fbf 100644 (file)
@@ -4318,6 +4318,8 @@ static void http_stats_io_handler(struct appctx *appctx)
        if (appctx->st0 == STAT_HTTP_DONE) {
                /* no more data are expected. Don't add TLR because mux-h1 will take care of it */
                res_htx->flags |= HTX_FL_EOM;
+               si->cs->flags |= CS_FL_EOI;
+               res->flags |= CF_EOI;
                appctx->st0 = STAT_HTTP_END;
        }