mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-20 13:30:46 +02:00
shell: allow bypassing lock checks
This commit is contained in:
@@ -71,6 +71,9 @@ func (ce *CommandEnv) isDirectory(path string) bool {
|
||||
|
||||
func (ce *CommandEnv) confirmIsLocked(args []string) error {
|
||||
|
||||
if ce.noLock {
|
||||
return nil
|
||||
}
|
||||
if ce.locker.IsLocked() {
|
||||
return nil
|
||||
}
|
||||
@@ -80,6 +83,13 @@ func (ce *CommandEnv) confirmIsLocked(args []string) error {
|
||||
|
||||
}
|
||||
|
||||
func (ce *CommandEnv) SetNoLock(noLock bool) {
|
||||
if ce == nil {
|
||||
return
|
||||
}
|
||||
ce.noLock = noLock
|
||||
}
|
||||
|
||||
func (ce *CommandEnv) isLocked() bool {
|
||||
if ce == nil {
|
||||
return true
|
||||
|
||||
Reference in New Issue
Block a user