aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/dir_rename.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-10-16 23:52:30 -0700
committerChris Lu <chris.lu@gmail.com>2021-10-16 23:52:30 -0700
commit93bb7869b8e7ad3e3b2e93a9f931c8b3b05d79b3 (patch)
tree87f38b0619b62a0ab1d562c12619a3ded42d334d /weed/filesys/dir_rename.go
parent8e2c9713a339604ed883a06c3a4cadb808c196be (diff)
downloadseaweedfs-93bb7869b8e7ad3e3b2e93a9f931c8b3b05d79b3.tar.xz
seaweedfs-93bb7869b8e7ad3e3b2e93a9f931c8b3b05d79b3.zip
Revert "mount: fix renaming a deep directory with unvisited directories"
This reverts commit 0ccdb937bba225ac6c170e6f5f1d8a3065ff56a7.
Diffstat (limited to 'weed/filesys/dir_rename.go')
-rw-r--r--weed/filesys/dir_rename.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/dir_rename.go b/weed/filesys/dir_rename.go
index ff65bccd2..dd76577b0 100644
--- a/weed/filesys/dir_rename.go
+++ b/weed/filesys/dir_rename.go
@@ -131,7 +131,7 @@ func (dir *Dir) moveFolderSubEntries(ctx context.Context, oldParent util.FullPat
glog.V(1).Infof("moving folder %s => %s", currentDirPath, newDirPath)
var moveErr error
- listErr := dir.wfs.metaCache.ListDirectoryEntries(ctx, dir.wfs, currentDirPath, "", false, int64(math.MaxInt32), func(item *filer.Entry) bool {
+ listErr := dir.wfs.metaCache.ListDirectoryEntries(ctx, currentDirPath, "", false, int64(math.MaxInt32), func(item *filer.Entry) bool {
moveErr = dir.moveEntry(ctx, currentDirPath, item, newDirPath, item.Name())
if moveErr != nil {
return false