Skip to content

Commit

Permalink
DPL: include DataProcessor metadata in the combined DataProcessorSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
knopers8 authored and ktf committed Jul 7, 2023
1 parent ed45fec commit f7a6a85
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Framework/Core/src/WorkflowSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,9 @@ WorkflowSpec combine(char const* name, std::vector<DataProcessorSpec> const& spe
for (auto& label : spec.labels) {
combined.labels.push_back(label);
}
for (auto& metadatum : spec.metadata) {
combined.metadata.push_back(metadatum);
}
for (auto& service : spec.requiredServices) {
// Insert in the final list of services
// only if a spec with the same name is not there
Expand Down

0 comments on commit f7a6a85

Please sign in to comment.