Skip to content
Snippets Groups Projects
Commit 25f327c0 authored by Joao Afonso's avatar Joao Afonso
Browse files

Increase time after which a drive will be marked as STALE to 4 hours

parent 5d553ff4
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
- cta/CTA#230 - Modify CTA code to enforce VID uppercase - cta/CTA#230 - Modify CTA code to enforce VID uppercase
- cta/CTA#239 - Add improvments to the cta-change-storage-class tool - cta/CTA#239 - Add improvments to the cta-change-storage-class tool
- cta/CTA#248 - Clean up output from cta-readtp - cta/CTA#248 - Clean up output from cta-readtp
- cta/CTA#251 - Increase free drive STALE threshold to 4 hours
### Bug Fixes ### Bug Fixes
- cta/CTA#234 - Replace stoi with toUint64 in standalone cli tool - cta/CTA#234 - Replace stoi with toUint64 in standalone cli tool
- cta/CTA#238 - Compilation fails when using cta::common::Configuration::getConfEntInt(...) - cta/CTA#238 - Compilation fails when using cta::common::Configuration::getConfEntInt(...)
......
...@@ -271,7 +271,7 @@ void TextFormatter::print(const DriveLsItem &drls_item) ...@@ -271,7 +271,7 @@ void TextFormatter::print(const DriveLsItem &drls_item)
{ {
//using namespace cta::common::dataStructures; //using namespace cta::common::dataStructures;
const int DRIVE_TIMEOUT = 600; // Time after which a drive will be marked as STALE const int DRIVE_TIMEOUT = 14400; // Time after which a drive will be marked as STALE (4 hours)
std::string driveStatusSince; std::string driveStatusSince;
std::string filesTransferredInSession; std::string filesTransferredInSession;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment