Skip to content

Commit 9394914

Browse files
committed
fixup! potential fix for ccdb-fetcher issue
1 parent 2c49488 commit 9394914

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Framework/Core/src/AnalysisSupportHelpers.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +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
131+
views::filter_not_matching(publisher.outpus) | // filter the inputs that are already covered
131132
views::input_to_output_specs() |
132-
sinks::update_output_list{publisher.outputs}; // append them to the publisher outputs
133+
sinks::append_to{publisher.outputs}; // append them to the publisher outputs
133134
}
134135

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

0 commit comments

Comments
 (0)