- Adding unit tests for Server

This commit is contained in:
Ian Roddis
2021-08-19 14:23:40 -03:00
parent 0a2a66bc59
commit db47bc1593
5 changed files with 150 additions and 34 deletions

View File

@@ -18,11 +18,8 @@ struct Options {
size_t webThreads = 50;
size_t dagThreads = 20;
// Pool name -> Executor Type + nWorkers
std::unordered_map<std::string, std::pair<std::string, size_t>> executors;
// Logger Config
std::vector<std::unique_ptr<daggy::loggers::dag_run::DAGRunLogger>> loggers;
std::unique_ptr<daggy::executors::task::TaskExecutor> executor;
std::unique_ptr<daggy::loggers::dag_run::DAGRunLogger> logger;
};
int main(int argc, char **argv) {