Преглед на файлове

HPCC-23782 Roxie udp free_slots comparison fix

Signed-off-by: Mark Kelly <mark.kelly@lexisnexisrisk.com>
Mark Kelly преди 5 години
родител
ревизия
34f60c7caa
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      roxie/udplib/udptrr.cpp

+ 1 - 1
roxie/udplib/udptrr.cpp

@@ -706,7 +706,7 @@ class CReceiveManager : implements IReceiveManager, public CInterface
         }
         else if (i >= free)
         {
-            if (udpTraceLevel)
+            if ((i > free) && (udpTraceLevel))
                 DBGLOG("UdpReceiver: ERROR: more packets in flight (%d) than slots free (%d)", i, free);  // Should never happen
             inflight = i = free-1;
         }