Updated to implementation of queues but no speedups yet
This commit is contained in:
parent
4e697bb787
commit
9e79b9f352
3 changed files with 57 additions and 56 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue