Skip to content

Commit cb9e9bc

Browse files
committed
Merge pull request #154 from simon-liubin/prelist/limit
前缀查询限制默认设置为 100
2 parents dfd0120 + a56e2e1 commit cb9e9bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/qiniu/storage/BucketManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public String[] buckets() throws QiniuException {
6161
* @return FileInfo迭代器
6262
*/
6363
public FileListIterator createFileListIterator(String bucket, String prefix) {
64-
return new FileListIterator(bucket, prefix, 1000, null);
64+
return new FileListIterator(bucket, prefix, 100, null);
6565
}
6666

6767
/**

0 commit comments

Comments
 (0)