Skip to content

Commit b164eeb

Browse files
committed
DPL: drop spurious error message
1 parent 11f028e commit b164eeb

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

Framework/Core/src/DataRelayer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ DataRelayer::DataRelayer(const CompletionPolicy& policy,
7171
std::scoped_lock<LockableBase(std::recursive_mutex)> lock(mMutex);
7272

7373
if (policy.configureRelayer == nullptr) {
74-
char *defaultPipelineLengthTxt = getenv("DPL_DEFAULT_PIPELINE_LENGTH");
74+
char* defaultPipelineLengthTxt = getenv("DPL_DEFAULT_PIPELINE_LENGTH");
7575
int defaultPipelineLength = defaultPipelineLengthTxt ? std::stoi(defaultPipelineLengthTxt) : DEFAULT_PIPELINE_LENGTH;
7676
setPipelineLength(defaultPipelineLength);
7777
} else {

Framework/TestWorkflows/src/o2DiamondWorkflow.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ WorkflowSpec defineDataProcessing(ConfigContext const& specs)
8181
[](DataAllocator& outputs, RawDeviceService& device, DataTakingContext& context, ProcessingContext& pcx) {
8282
// static RateLimiter limiter;
8383
// limiter.check(pcx, std::stoi(device.device()->fConfig->GetValue<std::string>("timeframes-rate-limit")), 2000);
84-
LOG(error) << "Foo";
8584
auto& aData = outputs.make<int>(OutputRef{"a1"}, 1);
8685
auto& bData = outputs.make<int>(OutputRef{"a2"}, 1);
8786
})},

0 commit comments

Comments
 (0)