Removing verbose logging

This commit is contained in:
Ian Roddis
2022-01-28 14:36:33 -04:00
parent 782e6a8b97
commit e3a6c9086a
2 changed files with 1 additions and 4 deletions

View File

@@ -142,9 +142,6 @@ namespace daggy::daggyr {
auto runID = request.param(":runID").as<DAGRunID>();
auto taskName = request.param(":taskName").as<std::string>();
std::cout << "Received request for " << runID << " / " << taskName
<< std::endl;
Capacity resourcesUsed;
Task task;
try {

View File

@@ -101,7 +101,7 @@ namespace daggy {
/*
In cases where there are many tasks ready to execute,
the blocking nature of executor_.execute(...) means
that tasks will get executed and the futures resolve,
that tasks will get executed and the futures resolved,
but we won't know until all pending tasks are enqueued.
To avoid this, submit at most MAX_SUBMITS tasks before