From 8b33a4a19b166959506d877fd24341a89f92dfd3 Mon Sep 17 00:00:00 2001
From: Michael Davis <michael.davis@cern.ch>
Date: Mon, 26 Mar 2018 11:27:16 +0200
Subject: [PATCH] [cta-admin] Swap order of vid,logical library in listing

---
 xroot_plugins/XrdSsiCtaRequestMessage.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xroot_plugins/XrdSsiCtaRequestMessage.cpp b/xroot_plugins/XrdSsiCtaRequestMessage.cpp
index 97789d1dee..8e506a0282 100644
--- a/xroot_plugins/XrdSsiCtaRequestMessage.cpp
+++ b/xroot_plugins/XrdSsiCtaRequestMessage.cpp
@@ -1717,8 +1717,8 @@ void RequestMessage::processShowQueues(const cta::admin::AdminCmd &admincmd, cta
          std::vector<std::string> currentRow;
          currentRow.push_back(common::dataStructures::toString(q.mountType));
          currentRow.push_back(q.tapePool);
-         currentRow.push_back(q.vid);
          currentRow.push_back(q.logicalLibrary);
+         currentRow.push_back(q.vid);
          currentRow.push_back(std::to_string(q.filesQueued));
          currentRow.push_back(bytesToMbString(q.bytesQueued));
          currentRow.push_back(std::to_string(q.oldestJobAge));
-- 
GitLab