Skip to content

Commit 922ff46

Browse files
committed
DPL: drop old workaround for rate logging
--fairmq-rate-logging works as expected now
1 parent dbf31d5 commit 922ff46

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

Framework/Core/src/DataProcessingDevice.cxx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ using namespace o2::framework;
6363
using ConfigurationInterface = o2::configuration::ConfigurationInterface;
6464
using DataHeader = o2::header::DataHeader;
6565

66-
constexpr unsigned int MIN_RATE_LOGGING = 60;
67-
6866
namespace o2::framework
6967
{
7068

@@ -184,15 +182,6 @@ void DataProcessingDevice::Init()
184182
TracyAppInfo(mSpec.name.data(), mSpec.name.size());
185183
ZoneScopedN("DataProcessingDevice::Init");
186184
mRelayer = &mServiceRegistry.get<DataRelayer>();
187-
// For some reason passing rateLogging does not work anymore.
188-
// This makes sure we never have more than one notification per minute.
189-
for (auto& x : fChannels) {
190-
for (auto& c : x.second) {
191-
if (c.GetRateLogging() < MIN_RATE_LOGGING) {
192-
c.UpdateRateLogging(MIN_RATE_LOGGING);
193-
}
194-
}
195-
}
196185
// If available use the ConfigurationInterface, otherwise go for
197186
// the command line options.
198187
bool hasConfiguration = false;

0 commit comments

Comments
 (0)