Adding executor description for verbose output, adding output directory for build artifacts
This commit is contained in:
@@ -72,6 +72,13 @@ ForkingTaskExecutor::~ForkingTaskExecutor()
|
||||
taskControls_.clear();
|
||||
}
|
||||
|
||||
std::string ForkingTaskExecutor::description() const
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << "ForkingTaskExecutor with " << tp_.size() << " threads";
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
bool ForkingTaskExecutor::stop(DAGRunID runID, const std::string &taskName)
|
||||
{
|
||||
std::string key = std::to_string(runID) + "_" + taskName;
|
||||
|
||||
Reference in New Issue
Block a user