Skip to content

Commit 096694b

Browse files
authored
DPL: allow larger grace period for dispatching non-DPL incoming messages (#13639)
1 parent 5af5498 commit 096694b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Core/src/ExternalFairMQDeviceProxy.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ void sendOnChannel(fair::mq::Device& device, fair::mq::Parts& messages, std::str
108108
}
109109

110110
// FIXME: we need a better logic for avoiding message spam
111-
if (timeout > 1 && timeout <= maxTimeout) {
112-
LOG(warning) << "dispatching on channel " << channel << " was delayed by " << timeout << " ms";
111+
if (timeout > 100 && timeout <= maxTimeout) {
112+
LOG(warning) << "dispatching on channel " << channel << " was delayed by " << timeout / 1000.f << " s";
113113
}
114114
// TODO: feeling this is a bit awkward, but the interface of fair::mq::Parts does not provide a
115115
// method to clear the content.

0 commit comments

Comments
 (0)