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
e1bd8bf2
Commit
e1bd8bf2
authored
Apr 05, 2019
by
Eric Cano
Browse files
Fixed failure to commit the tape's fSeq update when reporting only placeholders.
parent
2b778d5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
catalogue/OracleCatalogue.cpp
View file @
e1bd8bf2
...
...
@@ -377,8 +377,11 @@ void OracleCatalogue::filesWrittenToTape(const std::set<TapeItemWrittenPointer>
const
TapeItemWritten
&
lastEvent
=
**
lastEventItor
;
updateTape
(
conn
,
lastEvent
.
vid
,
lastEvent
.
fSeq
,
totalCompressedBytesWritten
,
lastEvent
.
tapeDrive
);
// If we had only placeholders and no file recorded, we are done.
if
(
fileEvents
.
empty
())
return
;
// If we had only placeholders and no file recorded, we are done (but we still commit the update of the tape's fSeq).
if
(
fileEvents
.
empty
())
{
conn
.
commit
();
return
;
}
// Create the archive file entries, skipping those that already exist
idempotentBatchInsertArchiveFiles
(
conn
,
fileEvents
);
...
...
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