Skip to content

Commit 4f8ba14

Browse files
committed
disabled CRU fifo healthy
1 parent b59e7b5 commit 4f8ba14

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/ReadoutEquipmentRORC.cxx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,18 @@ Thread::CallbackResult ReadoutEquipmentRORC::prepareBlocks()
210210
}
211211
}
212212
lastPacketDropped = currentPacketDropped;
213-
if (!channel->areSuperpageFifosHealthy()) {
214-
static InfoLogger::AutoMuteToken logToken(LogWarningSupport_(3235), 5, 60);
215-
theLog.log(logToken, "Equipment %s: CRU memory fifo not healthy", name.c_str());
216-
}
213+
217214
if (isWaitingFirstLoop) {
218215
packetDroppedTimer.reset(1000000); // 1 sec interval
219216
} else {
220217
packetDroppedTimer.increment();
218+
// check CRU FIFO status - but only after first loop, otherwise would be empty yet
219+
if (0) { // feature disabled for the time being, spurious warnings on startup
220+
if (!channel->areSuperpageFifosHealthy()) {
221+
static InfoLogger::AutoMuteToken logToken(LogWarningSupport_(3235), 5, 60);
222+
theLog.log(logToken, "Equipment %s: ROC memory fifo not healthy", name.c_str());
223+
}
224+
}
221225
}
222226
}
223227

0 commit comments

Comments
 (0)