浏览代码

HPCC-18080 Roxie PING message should report units

Saves me having to scan the source any time anyone asks me what it means.

Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 8 年之前
父节点
当前提交
65549cfa28
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      roxie/ccd/ccdqueue.cpp

+ 1 - 1
roxie/ccd/ccdqueue.cpp

@@ -2846,7 +2846,7 @@ public:
                 if (!pingsReceived && roxieMulticastEnabled)
                     DBGLOG("PING: NO replies received! Please check multicast settings, and that your network supports multicast.");
                 else if (traceLevel)
-                    DBGLOG("PING: %d replies received, average delay %d", pingsReceived, pingsReceived ? pingsElapsed / pingsReceived : 0);
+                    DBGLOG("PING: %d replies received, average delay %uus", pingsReceived, pingsReceived ? pingsElapsed / pingsReceived : 0);
                 pingsReceived = 0;
                 pingsElapsed = 0;
                 sendPing(ROXIE_HIGH_PRIORITY);  // MORE - we could think about alternating the priority or sending pings on high and low at the same time...