| 85 | } |
| 86 | |
| 87 | void addRemoteSplits( |
| 88 | std::shared_ptr<Task> task, |
| 89 | const std::vector<std::string>& remoteTaskIds) { |
| 90 | for (auto& taskId : remoteTaskIds) { |
| 91 | task->addSplit("0", remoteSplit(taskId)); |
| 92 | } |
| 93 | task->noMoreSplits("0"); |
| 94 | } |
| 95 | |
| 96 | bool waitForTaskFinish( |
| 97 | exec::Task* task, |
nothing calls this directly
no test coverage detected