From: Christopher Faulet Date: Tue, 5 May 2026 14:07:13 +0000 (+0200) Subject: BUG/MINOR: haterm: Don't set HTX_FL_EOM flag on 100-Continue responses X-Git-Tag: v3.4-dev11~37 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=b945a3207b814922166e44408b182f577a368713;p=haproxy.git BUG/MINOR: haterm: Don't set HTX_FL_EOM flag on 100-Continue responses A 100-Continue response is an intermediary message. So the end of message must not be announed. --- diff --git a/src/haterm.c b/src/haterm.c index 11bab6a22..ea0d40cc8 100644 --- a/src/haterm.c +++ b/src/haterm.c @@ -523,7 +523,6 @@ static int hstream_build_http_100_continue_resp(struct hstream *hs) goto err; } - htx->flags |= HTX_FL_EOM; htx_to_buf(htx, buf); sl->info.res.status = 100; ret = 1;