Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Framework/Core/src/AnalysisSupportHelpers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ void AnalysisSupportHelpers::addMissingOutputsToReader(std::vector<OutputSpec> c
DataProcessorSpec& publisher)
{
requestedInputs |
views::filter_not_matching(providedOutputs) | // filter the inputs that are already provided
views::filter_not_matching(providedOutputs) | // filter the inputs that are already provided
views::filter_not_matching(publisher.outputs) | // filter the inputs that are already covered
views::input_to_output_specs() |
sinks::append_to{publisher.outputs}; // append them to the publisher outputs
sinks::append_to{publisher.outputs}; // append them to the publisher outputs
}

void AnalysisSupportHelpers::addMissingOutputsToSpawner(std::vector<OutputSpec> const& providedSpecials,
Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/src/WorkflowHelpers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
} break;
case Lifetime::Condition: {
requestedCCDBs.emplace_back(input);
if ((hasConditionOption == false) && std::none_of(processor.options.begin(), processor.options.end(), [](auto const& option){ return (option.name.compare("condition-backend") == 0); })) {
if ((hasConditionOption == false) && std::none_of(processor.options.begin(), processor.options.end(), [](auto const& option) { return (option.name.compare("condition-backend") == 0); })) {
processor.options.emplace_back(ConfigParamSpec{"condition-backend", VariantType::String, defaultConditionBackend(), {"URL for CCDB"}});
processor.options.emplace_back(ConfigParamSpec{"condition-timestamp", VariantType::Int64, 0ll, {"Force timestamp for CCDB lookup"}});
hasConditionOption = true;
Expand Down