From 346ac089021a882f57d9d55ce2638f9cf842d5e3 Mon Sep 17 00:00:00 2001 From: Mark Kelly Date: Fri, 5 Jan 2024 11:58:16 -0500 Subject: [PATCH] HPCC-31080 Excessive Duplicate requestToSend Roxie logging sometimes Signed-off-by: Mark Kelly --- roxie/udplib/udptrr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roxie/udplib/udptrr.cpp b/roxie/udplib/udptrr.cpp index 49271868a9f..e4598a84974 100644 --- a/roxie/udplib/udptrr.cpp +++ b/roxie/udplib/udptrr.cpp @@ -643,7 +643,7 @@ class CReceiveManager : implements IReceiveManager, public CInterface { // It's a duplicate request-to-send - either they lost the request_received, or the ok_to_send (which has timed out) // whichever is the case we should resend the acknowledgement to prevent the sender flooding us with requests - if (udpTraceLevel || udpTraceFlow) + if (udpTraceLevel >= 2 || udpTraceFlow) { StringBuffer s; DBGLOG("UdpFlow: Duplicate requestToSend %" SEQF "u from node %s", _flowSeq, dest.getHostText(s).str());