Skip to content

Commit a56e2e1

Browse files
committed
前缀查询限制默认设置为 100
1 parent 302d317 commit a56e2e1

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
@@ -40,7 +40,7 @@ public String[] buckets() throws QiniuException {
4040
}
4141

4242
public FileListIterator createFileListIterator(String bucket, String prefix) {
43-
return new FileListIterator(bucket, prefix, 1000, null);
43+
return new FileListIterator(bucket, prefix, 100, null);
4444
}
4545

4646
public FileListIterator createFileListIterator(String bucket, String prefix, int limit, String delimiter) {

0 commit comments

Comments
 (0)