Skip to content
Snippets Groups Projects
Commit 521c0f30 authored by Jorge Camarero Vera's avatar Jorge Camarero Vera
Browse files

Release v4.10.4 1

parent 87d9a62b
Branches
Tags
No related merge requests found
......@@ -7,16 +7,20 @@
- cta/CTA#477 - Fix uncaught exception Helpers::NoTapeAvailableForRetrieve
- cta/CTA#481 - Fix security hotspots related to file permissions and capabilities
- cta/CTA#482 - Fix bugs reported by SonarCloud in tape server, scheduler and objectstore
- cta/CTA#486 - Fix cppcheck new errors
- cta/CTA#473 - Fix some code smells from repack expansion changes.
### Features
- cta/CTA#487 - Bump "filesWrittenToTape: File size mismatch" error to ALERT
### Continuous Integration
- cta/CTA#352 - Test rollback Catalogue Version
- cta/CTA#446 - Upgrade eos to 4.8.105/5.1.29
# v4.10.4-1
### Features
- cta/CTA#487 - Bump "filesWrittenToTape: File size mismatch" error to ALERT
### Bug Fixes
- cta/CTA#486 - Fix cppcheck new errors
# v4.10.3-1
### Bug Fixes
......
......@@ -263,6 +263,7 @@ void PostgresTapeFileCatalogue::filesWrittenToTape(const std::set<TapeItemWritte
catalogue::FileSizeMismatch ex;
ex.getMessage() << __FUNCTION__ << ": File size mismatch: expected=" << fileSizeAndChecksum.fileSize <<
", actual=" << event.size << ": " << fileContext.str();
m_log(log::ALERT, ex.getMessage().str());
throw ex;
}
......
......@@ -176,6 +176,7 @@ void SqliteTapeFileCatalogue::fileWrittenToTape(rdbms::Conn &conn, const TapeFil
catalogue::FileSizeMismatch ex;
ex.getMessage() << "File size mismatch: expected=" << archiveFileRow->size << ", actual=" << event.size << ": "
<< fileContext.str();
m_log(log::ALERT, ex.getMessage().str());
throw ex;
}
......
......@@ -595,6 +595,9 @@ echo $(jq --argjson CTA_MAJOR_VERSION $cta_major_version '. += {"cta_major_versi
%changelog
* Mon Sep 18 2023 Jorge Camarero Vera <jorge.camarero@cern.ch> - 4.10.4-1
- Bump "filesWrittenToTape: File size mismatch" error to ALERT
* Wed Sep 06 2023 Jorge Camarero Vera <jorge.camarero@cern.ch> - 4.10.3-1
- Fix device statistics from LTO drives
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment