Skip to content
Snippets Groups Projects
Commit 1cdffd42 authored by Jacek Maksymilian Chodak's avatar Jacek Maksymilian Chodak Committed by Jorge Camarero Vera
Browse files

Fix improper initialization of the variable m_lastFseq in the constructor of...

Fix improper initialization of the variable m_lastFseq in the constructor of castor::tape::tapeserver::daemon::TapeWriteSingleThread (#1247)
parent 429791e6
Branches
Tags
No related merge requests found
......@@ -21,6 +21,7 @@ The command `cta-verify-file` now requires the options `eos.instance`, `eos.requ
- cta/CTA#1241 - make cta-verify-file get instance, request user and group otions from ctacli config file
### Bug fixes
- cta/CTA#1225 - Fix bug causing tapeserver to sometimes pop the entire archive queue at the end of the mount
- cta/CTA#1247 - Fix improper initialization of the variable m_lastFseq of type uint64_t with -1 value in the constructor of castor::tape::tapeserver::daemon::TapeWriteSingleThread
### Building and Packaging
### Catalogue Schema
......
......@@ -42,7 +42,7 @@ castor::tape::tapeserver::daemon::TapeWriteSingleThread::TapeWriteSingleThread(
m_bytesBeforeFlush(bytesBeforeFlush),
m_drive(drive),
m_reportPacker(reportPacker),
m_lastFseq(-1),
m_lastFseq(0),
m_compress(true),
m_useLbp(useLbp),
m_watchdog(watchdog),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment