Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CTA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cta
CTA
Commits
ea09c9d9
Commit
ea09c9d9
authored
11 months ago
by
Pablo Oliver Cortes
Browse files
Options
Downloads
Patches
Plain Diff
Resolve "Fix missing toString for `Cleanup` in SessionType"
parent
e8fe9461
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!502
Resolve "Fix missing toString for `Cleanup` in SessionType"
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ReleaseNotes.md
+1
-0
1 addition, 0 deletions
ReleaseNotes.md
tapeserver/session/SessionType.cpp
+2
-0
2 additions, 0 deletions
tapeserver/session/SessionType.cpp
with
3 additions
and
0 deletions
ReleaseNotes.md
+
1
−
0
View file @
ea09c9d9
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
tapeserver/session/SessionType.cpp
+
2
−
0
View file @
ea09c9d9
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment