Skip to content

Commit

Permalink
Merge pull request #18191 from mckellyln/reduce_dups
Browse files Browse the repository at this point in the history
HPCC-31080 Excessive Duplicate requestToSend Roxie logging sometimes

Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Jan 8, 2024
2 parents 33399bd + 94b2431 commit 6c75870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roxie/udplib/udptrr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 6c75870

Please sign in to comment.