Skip to content
Snippets Groups Projects
Commit ea09c9d9 authored by Pablo Oliver Cortes's avatar Pablo Oliver Cortes :nerd:
Browse files

Resolve "Fix missing toString for `Cleanup` in SessionType"

parent e8fe9461
No related branches found
No related tags found
1 merge request!502Resolve "Fix missing toString for `Cleanup` in SessionType"
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
- cta/CTA#485 - Check disk file metadata on delete requests - cta/CTA#485 - Check disk file metadata on delete requests
- cta/CTA#634 - Fix crash of ctafrontend in initialisation for missing config values - cta/CTA#634 - Fix crash of ctafrontend in initialisation for missing config values
- cta/CTA#666 - Fix drive status activity field not being properly reset - cta/CTA#666 - Fix drive status activity field not being properly reset
- cta/CTA#502 - Fix string representation for Cleanup session type
### Continuous Integration ### Continuous Integration
- cta/CTA#615 - Going to xrdfs xattr API for EOS5 extended attribute tests (EOS >= 5.2.17) - cta/CTA#615 - Going to xrdfs xattr API for EOS5 extended attribute tests (EOS >= 5.2.17)
......
...@@ -30,6 +30,8 @@ std::string toString(SessionType type) { ...@@ -30,6 +30,8 @@ std::string toString(SessionType type) {
return "Label"; return "Label";
case SessionType::Undetermined: case SessionType::Undetermined:
return "Undetermined"; return "Undetermined";
case SessionType::Cleanup:
return "Cleanup";
default: default:
{ {
std::stringstream st; std::stringstream st;
......
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