Merge pull request #3 from chrislusf/master

merge seaweed master
This commit is contained in:
joeslay
2019-09-04 14:58:04 +01:00
committed by GitHub
12 changed files with 79 additions and 33 deletions

View File

@@ -73,11 +73,11 @@ func (fs *FilerServer) moveFolderSubEntries(ctx context.Context, oldParent filer
return err
}
println("found", len(entries), "entries under", currentDirPath)
// println("found", len(entries), "entries under", currentDirPath)
for _, item := range entries {
lastFileName = item.Name()
println("processing", lastFileName)
// println("processing", lastFileName)
err := fs.moveEntry(ctx, currentDirPath, item, newDirPath, item.Name(), events)
if err != nil {
return err

View File

@@ -5,5 +5,5 @@ import (
)
var (
VERSION = fmt.Sprintf("%s %d.%d", sizeLimit, 1, 42)
VERSION = fmt.Sprintf("%s %d.%d", sizeLimit, 1, 43)
)