Skip to content
Snippets Groups Projects
Commit 88907baf authored by Victor Kotlyar's avatar Victor Kotlyar
Browse files

Fix "cta sq" command to show tapepool in case of retrieve.

Added tapepool information from the catalog in
Scheduler::getQueuesAndMountSummaries.
parent 366ceeee
No related branches found
No related tags found
No related merge requests found
......@@ -753,6 +753,7 @@ std::list<common::dataStructures::QueueAndMountSummary> Scheduler::getQueuesAndM
if (t.disabled) mountOrQueue.disabledTapes++;
if (t.full) mountOrQueue.fullTapes++;
if (!t.full && !t.disabled) mountOrQueue.writableTapes++;
mountOrQueue.tapePool = t.tapePoolName;
}
}
return ret;
......
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