Skip to content

Commit

Permalink
Mark printer as taking Sporadic data (#2045)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf committed Nov 23, 2023
1 parent 8c0af64 commit 889e24a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Framework/src/runBasic.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ WorkflowSpec defineDataProcessing(const ConfigContext& config)
DataProcessorSpec printer{
"printer",
Inputs{
{ "checked-mo", "QC", Check::createCheckDataDescription(getFirstCheckName(qcConfigurationSource)), 0 } },
{ "checked-mo", "QC", Check::createCheckDataDescription(getFirstCheckName(qcConfigurationSource)), 0, Lifetime::Sporadic } },
Outputs{},
adaptFromTask<o2::quality_control::example::ExampleQualityPrinterSpec>()
};
Expand All @@ -130,7 +130,7 @@ WorkflowSpec defineDataProcessing(const ConfigContext& config)
DataProcessorSpec printer{
"printer",
Inputs{
{ "checked-mo", "QC", TaskRunner::createTaskDataDescription(getFirstTaskName(qcConfigurationSource)), 0 } },
{ "checked-mo", "QC", TaskRunner::createTaskDataDescription(getFirstTaskName(qcConfigurationSource)), 0, Lifetime::Sporadic } },
Outputs{},
adaptFromTask<o2::quality_control::example::ExamplePrinterSpec>()
};
Expand Down

0 comments on commit 889e24a

Please sign in to comment.