[shell] add noLock param for volume.move (#6261)

This commit is contained in:
Konstantin Lebedev
2024-11-20 21:35:24 +05:00
committed by GitHub
parent 96f1a2e01a
commit 254ed8897e
2 changed files with 12 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ func (ce *CommandEnv) isLocked() bool {
return true
}
if ce.noLock {
return false
return true
}
return ce.locker.IsLocked()
}