Skip to content
Snippets Groups Projects
Commit d4132fd8 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 d78c5ff6
Branches
Tags
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.
Please register or to comment