Skip to content
Snippets Groups Projects
Commit 37cd6f6e authored by Michael Davis's avatar Michael Davis
Browse files

[lpa_stream] Makes QueueItor class aware of new Live queue type

parent bd468dfe
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ std::cerr << "ArchiveQueueItor constructor" << std::endl;
{
objectstore::ScopedSharedLock rel(re);
re.fetch();
m_jobQueuesQueue = re.dumpArchiveQueues();
m_jobQueuesQueue = re.dumpArchiveQueues(objectstore::QueueType::LiveJobs);
}
// Set queue iterator to the first queue in the list
......@@ -230,7 +230,7 @@ std::cerr << "RetrieveQueueItor constructor" << std::endl;
objectstore::RootEntry re(m_objectStore);
objectstore::ScopedSharedLock rel(re);
re.fetch();
m_jobQueuesQueue = re.dumpRetrieveQueues();
m_jobQueuesQueue = re.dumpRetrieveQueues(objectstore::QueueType::LiveJobs);
}
// Find the first queue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment