Skip to content

Commit 10615f8

Browse files
authored
Adapt to support new services API (#439)
A new service declaration API will be introduced shortly. This makes sure QC is compatible with both old and new API.
1 parent f40c67d commit 10615f8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Framework/src/CheckRunnerFactory.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ DataProcessorSpec CheckRunnerFactory::create(std::vector<Check> checks, std::str
4040
Outputs{ qcCheckRunner.getOutputs() },
4141
adaptFromTask<CheckRunner>(std::move(qcCheckRunner)),
4242
Options{},
43-
std::vector<std::string>{},
43+
{},
4444
std::vector<DataProcessorLabel>{} };
4545

4646
return newCheckRunner;
@@ -56,7 +56,7 @@ DataProcessorSpec CheckRunnerFactory::createSinkDevice(o2::framework::InputSpec
5656
Outputs{ qcCheckRunner.getOutputs() },
5757
adaptFromTask<CheckRunner>(std::move(qcCheckRunner)),
5858
Options{},
59-
std::vector<std::string>{},
59+
{},
6060
std::vector<DataProcessorLabel>{} };
6161

6262
return newCheckRunner;

0 commit comments

Comments
 (0)