Skip to content

Commit 2c49488

Browse files
committed
potential fix for ccdb-fetcher issue
1 parent a68da09 commit 2c49488

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Framework/Core/include/Framework/DataSpecViews.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ static auto filter_string_params_with(std::string match)
4545

4646
static auto input_to_output_specs()
4747
{
48-
return std::views::transform([](auto const& input) { return DataSpecUtils::asOutputSpec(input); });
48+
return std::views::transform([](auto const& input) {
49+
auto concrete = DataSpecUtils::asConcreteDataMatcher(input);
50+
return OutputSpec{concrete.origin, concrete.description, concrete.subSpec, input.lifetime, input.metadata};
51+
});
4952
}
5053

5154
static auto params_to_input_specs()

0 commit comments

Comments
 (0)