diff options
| author | Chris Lu <chris.lu@gmail.com> | 2024-02-05 17:30:14 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2024-02-05 17:30:14 -0800 |
| commit | fa72761bb8d77f20b177e0307ecc645c27aef991 (patch) | |
| tree | 1c7594fd43525486a07868e934447612a6ce4b20 /weed/cluster/lock_manager/distributed_lock_manager.go | |
| parent | c471265837a9ad33edfa0cdd9fa43900c602b7c1 (diff) | |
| download | seaweedfs-fa72761bb8d77f20b177e0307ecc645c27aef991.tar.xz seaweedfs-fa72761bb8d77f20b177e0307ecc645c27aef991.zip | |
fix on finding lock owner
Diffstat (limited to 'weed/cluster/lock_manager/distributed_lock_manager.go')
| -rw-r--r-- | weed/cluster/lock_manager/distributed_lock_manager.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/cluster/lock_manager/distributed_lock_manager.go b/weed/cluster/lock_manager/distributed_lock_manager.go index fe2fb5213..472d60778 100644 --- a/weed/cluster/lock_manager/distributed_lock_manager.go +++ b/weed/cluster/lock_manager/distributed_lock_manager.go @@ -55,7 +55,7 @@ func (dlm *DistributedLockManager) FindLockOwner(key string) (owner string, move return } if movedTo != dlm.Host { - glog.V(0).Infof("lock %s not on %s: to %s", key, dlm.Host, movedTo) + glog.V(0).Infof("lock %s not on current %s but on %s", key, dlm.Host, movedTo) return } owner, err = dlm.lockManager.GetLockOwner(key) |
