mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
a bit optimization
This commit is contained in:
parent
b2a43dd044
commit
71e0bcc5d5
|
@ -152,7 +152,7 @@ func (store *EtcdStore) ListDirectoryEntries(ctx context.Context, dirPath weed_u
|
||||||
}
|
}
|
||||||
|
|
||||||
resp, err := store.client.Get(ctx, string(lastFileStart),
|
resp, err := store.client.Get(ctx, string(lastFileStart),
|
||||||
clientv3.WithFromKey())
|
clientv3.WithFromKey(), clientv3.WithLimit(limit+1))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return lastFileName, fmt.Errorf("list %s : %v", dirPath, err)
|
return lastFileName, fmt.Errorf("list %s : %v", dirPath, err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue