Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
df4e894c
Commit
df4e894c
authored
Nov 09, 2015
by
Daniele Kruse
Browse files
Added missing creation log to retrieve requests
parent
86fdf637
Changes
2
Hide whitespace changes
Inline
Side-by-side
objectstore/Tape.cpp
View file @
df4e894c
...
...
@@ -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
();
...
...
xroot_plugins/XrdCtaFile.cpp
View file @
df4e894c
...
...
@@ -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
(
3
0
)
<<
"remote filepath"
<<
" "
<<
std
::
setw
(
5
0
)
<<
"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
(
3
0
)
<<
request
->
remoteFile
<<
" "
<<
std
::
setw
(
5
0
)
<<
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
(
3
0
)
<<
request
->
remoteFile
<<
" "
<<
std
::
setw
(
5
0
)
<<
request
->
remoteFile
<<
" "
<<
std
::
setw
(
8
)
<<
request
->
activeCopyNb
<<
" "
<<
std
::
setw
(
8
)
<<
blockIdSS
.
str
()
<<
" "
<<
std
::
setw
(
8
)
<<
fseqSS
.
str
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment