Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
dCache
cta
Commits
ca4f2e71
Commit
ca4f2e71
authored
1 year ago
by
Joao Afonso
Browse files
Options
Downloads
Patches
Plain Diff
Resolve "Fix "trying to unlock an unlocked lock" error"
parent
521c0f30
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ReleaseNotes.md
+1
-0
1 addition, 0 deletions
ReleaseNotes.md
objectstore/GenericObject.cpp
+0
-5
0 additions, 5 deletions
objectstore/GenericObject.cpp
with
1 addition
and
5 deletions
ReleaseNotes.md
+
1
−
0
View file @
ca4f2e71
# v4.NEXT
### Bug Fixes
-
cta/CTA#460 - Fix "trying to unlock an unlocked lock" error
-
cta/CTA#461 - Allow setting the repack VO if there is none with ongoing repacks
-
cta/CTA#469 - Fix command 'cta-admin drive ls' not showing REPACK VO on mounts of type ARCHIVE_FOR_REPACK
-
cta/CTA#472 - Fix repack VO exceeding the readmaxdrives limit
...
...
This diff is collapsed.
Click to expand it.
objectstore/GenericObject.cpp
+
0
−
5
View file @
ca4f2e71
...
...
@@ -95,9 +95,6 @@ namespace {
C
typedObject
(
*
gop
);
lock
.
transfer
(
typedObject
);
typedObject
.
garbageCollect
(
presumedOwner
,
agentReference
,
lc
,
catalogue
);
// Release the lock now as if we let the caller do, it will point
// to the then-removed typedObject.
lock
.
release
();
}
}
...
...
@@ -155,8 +152,6 @@ namespace {
C
typedObject
(
*
gop
);
ScopedLock
::
transfer
(
*
gop
,
typedObject
);
std
::
string
ret
=
typedObject
.
dump
();
// Release the lock now as if we let the caller do, it will point
// to the then-removed typedObject.
return
ret
;
}
}
...
...
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