From: Christopher Faulet Date: Thu, 4 Jun 2026 19:50:11 +0000 (+0200) Subject: MINOR: check: Don't dump buffers state in check traces for external checks X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3daf4498f32429497b091f8c1a47a40be9bcffa8;p=thirdparty%2Fhaproxy.git MINOR: check: Don't dump buffers state in check traces for external checks In healthcheck trace messages, there is no reason to dump the in/out buffers state for external checks. So let's skip this part in that case. --- diff --git a/src/check.c b/src/check.c index f3df19077..1e166322a 100644 --- a/src/check.c +++ b/src/check.c @@ -232,6 +232,9 @@ static void check_trace(enum trace_level level, uint64_t mask, chunk_appendf(&trace_buf, " sc=%p(0x%08x)", check->sc, check->sc->flags); } + if (check->type != PR_O2_TCPCHK_CHK) + return; + if (mask & CHK_EV_TCPCHK) { const char *type;