Skip to content

Commit 20415ab

Browse files
authored
Merge pull request #120 from alibuild/alibot-cleanup-14907
2 parents a484194 + 8879b6f commit 20415ab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Framework/Core/src/AnalysisSupportHelpers.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ void AnalysisSupportHelpers::addMissingOutputsToReader(std::vector<OutputSpec> c
127127
DataProcessorSpec& publisher)
128128
{
129129
requestedInputs |
130-
views::filter_not_matching(providedOutputs) | // filter the inputs that are already provided
130+
views::filter_not_matching(providedOutputs) | // filter the inputs that are already provided
131131
views::filter_not_matching(publisher.outputs) | // filter the inputs that are already covered
132132
views::input_to_output_specs() |
133-
sinks::append_to{publisher.outputs}; // append them to the publisher outputs
133+
sinks::append_to{publisher.outputs}; // append them to the publisher outputs
134134
}
135135

136136
void AnalysisSupportHelpers::addMissingOutputsToSpawner(std::vector<OutputSpec> const& providedSpecials,

Framework/Core/src/WorkflowHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
315315
} break;
316316
case Lifetime::Condition: {
317317
requestedCCDBs.emplace_back(input);
318-
if ((hasConditionOption == false) && std::none_of(processor.options.begin(), processor.options.end(), [](auto const& option){ return (option.name.compare("condition-backend") == 0); })) {
318+
if ((hasConditionOption == false) && std::none_of(processor.options.begin(), processor.options.end(), [](auto const& option) { return (option.name.compare("condition-backend") == 0); })) {
319319
processor.options.emplace_back(ConfigParamSpec{"condition-backend", VariantType::String, defaultConditionBackend(), {"URL for CCDB"}});
320320
processor.options.emplace_back(ConfigParamSpec{"condition-timestamp", VariantType::Int64, 0ll, {"Force timestamp for CCDB lookup"}});
321321
hasConditionOption = true;

0 commit comments

Comments
 (0)