Adding executor description for verbose output, adding output directory for build artifacts

This commit is contained in:
Ian Roddis
2022-01-07 14:37:06 -04:00
parent 856e5bd2f4
commit 4da78c9dd6
12 changed files with 61 additions and 3 deletions

View File

@@ -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;