Skip to content

Commit 3df4e4d

Browse files
knopers8ktf
authored andcommitted
Fix InputSpecs generation in Data Sampling
Just a misplaced 'break' which caused jumping out of the loop too soon.
1 parent a4a168f commit 3df4e4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/DataSampling.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ std::vector<InputSpec> DataSampling::InputSpecsForPolicy(ConfigurationInterface*
138138
path.second.subSpec,
139139
path.second.lifetime });
140140
}
141+
break;
141142
}
142-
break;
143143
}
144144
return inputs;
145145
}

0 commit comments

Comments
 (0)