diff --git a/objectstore/Tape.cpp b/objectstore/Tape.cpp index ca8ce93ca4f32df635242f2ce2ff13ff7091fe2d..8c8943f80e151846391d5acfbb628b165c5ee428 100644 --- a/objectstore/Tape.cpp +++ b/objectstore/Tape.cpp @@ -193,6 +193,7 @@ auto cta::objectstore::Tape::dumpAndFetchRetrieveRequests() auto & retReq = ret.back(); retReq.archiveFile = rtfr.getArchiveFile(); retReq.remoteFile = rtfr.getRemoteFile(); + retReq.creationLog = rtfr.getCreationLog(); // Find the copy number from the list of jobs retReq.activeCopyNb = rj->copynb(); auto jl = rtfr.dumpJobs(); @@ -207,7 +208,7 @@ auto cta::objectstore::Tape::dumpAndFetchRetrieveRequests() } catch (cta::exception::Exception &) {} } return ret; - } +} auto cta::objectstore::Tape::dumpJobs() -> std::list<JobDump> { checkPayloadReadable(); diff --git a/xroot_plugins/XrdCtaFile.cpp b/xroot_plugins/XrdCtaFile.cpp index e791b9557c457e8fadc34f52c56d5fc8e1ec0d60..c541dc9df06090976baa124db74eff3db40eb301 100644 --- a/xroot_plugins/XrdCtaFile.cpp +++ b/xroot_plugins/XrdCtaFile.cpp @@ -1133,7 +1133,7 @@ void XrdProFile::xCom_listpendingretrieves(const std::vector<std::string> &token << " " << std::setw(8) << "vid" << " " << std::setw(30) << "cta filepath" << " " << std::setw(16) << "size" - << " " << std::setw(30) << "remote filepath" + << " " << std::setw(50) << "remote filepath" << " " << std::setw(8) << "copynb" << " " << std::setw(8) << "block id" << " " << std::setw(8) << "fseq" @@ -1173,7 +1173,7 @@ void XrdProFile::xCom_listpendingretrieves(const std::vector<std::string> &token responseSS << " " << std::setw(8) << vid->first.vid << " " << std::setw(30) << request->archiveFile.path << " " << std::setw(16) << request->archiveFile.size - << " " << std::setw(30) << request->remoteFile + << " " << std::setw(50) << request->remoteFile << " " << std::setw(8) << request->activeCopyNb << " " << std::setw(8) << blockIdSS.str() << " " << std::setw(8) << fseqSS.str() @@ -1214,7 +1214,7 @@ void XrdProFile::xCom_listpendingretrieves(const std::vector<std::string> &token responseSS << " " << std::setw(8) << tapeVid << " " << std::setw(30) << request->archiveFile.path << " " << std::setw(16) << request->archiveFile.size - << " " << std::setw(30) << request->remoteFile + << " " << std::setw(50) << request->remoteFile << " " << std::setw(8) << request->activeCopyNb << " " << std::setw(8) << blockIdSS.str() << " " << std::setw(8) << fseqSS.str()