filer: increase directory listing pagination size

This commit is contained in:
Chris Lu
2019-12-12 09:11:10 -08:00
parent bf4b13612d
commit d0b423bbc0
5 changed files with 15 additions and 14 deletions

View File

@@ -40,7 +40,7 @@ func (fs *FilerServer) ListEntries(ctx context.Context, req *filer_pb.ListEntrie
limit = fs.option.DirListingLimit
}
paginationLimit := 1024 * 256
paginationLimit := filer2.PaginationSize
if limit < paginationLimit {
paginationLimit = limit
}