diff options
| author | Chris Lu <chris.lu@uber.com> | 2019-03-28 00:46:15 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@uber.com> | 2019-03-28 00:46:15 -0700 |
| commit | 487ca514915fd6db3f05ef5f2d5cd558a42a9e27 (patch) | |
| tree | a2f7ecafb77d7ab04dca9fe23a6b4cce451236b6 | |
| parent | 07775998a9af92e87f02da058c7cc47c3965ed95 (diff) | |
| download | seaweedfs-487ca514915fd6db3f05ef5f2d5cd558a42a9e27.tar.xz seaweedfs-487ca514915fd6db3f05ef5f2d5cd558a42a9e27.zip | |
weed filer.export: fix pagination error
| -rw-r--r-- | weed/command/filer_export.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/command/filer_export.go b/weed/command/filer_export.go index 396d0d71f..ed1ee8966 100644 --- a/weed/command/filer_export.go +++ b/weed/command/filer_export.go @@ -158,6 +158,7 @@ func doTraverse(ctx context.Context, stat *statistics, filerStore filer2.FilerSt } else { stat.fileCount++ } + lastEntryName = entry.Name() } if len(entries) < limit { break |
