Skip to content

Commit ddae8de

Browse files
committed
修复导入问题
1 parent 6fcff3b commit ddae8de

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。
44

5+
# 17.1.1
6+
7+
- 修复导入问题
8+
59
# 17.1.0
610

711
- 优化导入效率

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
group=run.ikaros.plugin.alist
22
description=A ikaros plugin for alist.
3-
version=17.1.0
3+
version=17.1.1

src/main/java/run/ikaros/plugin/alist/alist/AListClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private Mono<Void> createAttachmentRecursively(List<String> paths, Long parentId
8585

8686
AListAttachment[] attachments = fetchAttachments(paths);
8787
return Flux.fromStream(Arrays.stream(attachments))
88-
.parallel()
88+
.subscribeOn(Schedulers.boundedElastic())
8989
.map(aListAttachment -> {
9090
List<String> newPaths = new ArrayList<>(paths);
9191
newPaths.add(aListAttachment.getName());

0 commit comments

Comments
 (0)