forked from TrueCloudLab/frostfs-node
[#156] metabase: Make freePotentialLocks() pass linter checks
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
fb13902db9
commit
8014fdb21a
1 changed files with 38 additions and 38 deletions
|
@ -138,16 +138,20 @@ func objectLocked(tx *bbolt.Tx, idCnr cid.ID, idObj oid.ID) bool {
|
||||||
// Operation is very resource-intensive, which is caused by the admissibility
|
// Operation is very resource-intensive, which is caused by the admissibility
|
||||||
// of multiple locks. Also, if we knew what objects are locked, it would be
|
// of multiple locks. Also, if we knew what objects are locked, it would be
|
||||||
// possible to speed up the execution.
|
// possible to speed up the execution.
|
||||||
//
|
|
||||||
// nolint: gocognit
|
|
||||||
func freePotentialLocks(tx *bbolt.Tx, idCnr cid.ID, locker oid.ID) error {
|
func freePotentialLocks(tx *bbolt.Tx, idCnr cid.ID, locker oid.ID) error {
|
||||||
bucketLocked := tx.Bucket(bucketNameLocked)
|
bucketLocked := tx.Bucket(bucketNameLocked)
|
||||||
if bucketLocked != nil {
|
if bucketLocked == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
key := make([]byte, cidSize)
|
key := make([]byte, cidSize)
|
||||||
idCnr.Encode(key)
|
idCnr.Encode(key)
|
||||||
|
|
||||||
bucketLockedContainer := bucketLocked.Bucket(key)
|
bucketLockedContainer := bucketLocked.Bucket(key)
|
||||||
if bucketLockedContainer != nil {
|
if bucketLockedContainer == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
keyLocker := objectKey(locker, key)
|
keyLocker := objectKey(locker, key)
|
||||||
return bucketLockedContainer.ForEach(func(k, v []byte) error {
|
return bucketLockedContainer.ForEach(func(k, v []byte) error {
|
||||||
keyLockers, err := decodeList(v)
|
keyLockers, err := decodeList(v)
|
||||||
|
@ -185,10 +189,6 @@ func freePotentialLocks(tx *bbolt.Tx, idCnr cid.ID, locker oid.ID) error {
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsLockedPrm groups the parameters of IsLocked operation.
|
// IsLockedPrm groups the parameters of IsLocked operation.
|
||||||
|
|
Loading…
Reference in a new issue