This is an automated email from the ASF dual-hosted git repository. maxyang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit f0fd4bd2298b3d9a327fce283633750c6fa63d12 Author: Adam Lee <[email protected]> AuthorDate: Tue Jun 13 21:42:38 2023 +0800 CI fix: don't log too much interconnect events (#15761) Align this teardown event logging with interconnect TCP. --- contrib/interconnect/udp/ic_udpifc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/interconnect/udp/ic_udpifc.c b/contrib/interconnect/udp/ic_udpifc.c index a381b4ea5b..2fe2426d3d 100644 --- a/contrib/interconnect/udp/ic_udpifc.c +++ b/contrib/interconnect/udp/ic_udpifc.c @@ -3748,8 +3748,8 @@ TeardownUDPIFCInterconnect_Internal(ChunkTransportState *transportStates, pfree(transportStates); } - if (gp_log_interconnect >= GPVARS_VERBOSITY_TERSE) - elog(DEBUG1, "TeardownUDPIFCInterconnect successful"); + if (gp_log_interconnect >= GPVARS_VERBOSITY_DEBUG) + elog(DEBUG4, "TeardownUDPIFCInterconnect successful"); RESUME_INTERRUPTS(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
