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

Resolve "cta-taped should set the state to DOWN when machine rebooting"

parent c99ac23a
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@
## Bug fixes
- cta/CTA#1092 - Fix overflow error with drive state latestBandwith causing cta frontend crash
- cta/CTA#501 - Fix disappearing reason when TapeDrive is reading or writing
# v4.4.0-1
......
......@@ -276,7 +276,9 @@ void TapeDrivesCatalogueState::setDriveUpOrMaybeDown(common::dataStructures::Tap
auto targetStatus = common::dataStructures::DriveStatus::Up;
if (!driveState.desiredUp) {
driveState.driveStatus = common::dataStructures::DriveStatus::Down;
driveState.reasonUpDown = inputs.reason;
if (!driveState.reasonUpDown) {
driveState.reasonUpDown = inputs.reason;
}
}
// If we were already up (or down), then we only update the last update time.
if (driveState.driveStatus == targetStatus) {
......
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