File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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
135136void AnalysisSupportHelpers::addMissingOutputsToSpawner (std::vector<OutputSpec> const & providedSpecials,
You can’t perform that action at this time.
0 commit comments