Updated to implementation of queues but no speedups yet

This commit is contained in:
Alejandro Saucedo 2020-10-15 22:13:12 +01:00
parent 4e697bb787
commit 9e79b9f352
3 changed files with 57 additions and 56 deletions

View file

@ -130,7 +130,7 @@ class Manager
std::unordered_map<std::string, std::shared_ptr<Sequence>>::iterator found =
this->mManagedSequences.find(sequenceName);
if (found == this->mManagedSequences.end()) {
if (found != this->mManagedSequences.end()) {
std::shared_ptr<Sequence> sq = found->second;
SPDLOG_DEBUG("Kompute Manager evalOpAsync running sequence BEGIN");