mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-06-02 19:02:44 +08:00
fix: 修复sort 错误
This commit is contained in:
@@ -108,9 +108,10 @@ public class DefaultReactiveAuthenticationInitializeService
|
||||
&& properties.isDimensionEnabled(dimension.getType().getId()))
|
||||
.groupBy(d -> d.getType().getId(), Dimension::getId)
|
||||
.flatMap(group ->
|
||||
group.buffer(200)
|
||||
.sort()
|
||||
.concatMap(list -> findSettings(group.key(), list)));
|
||||
group
|
||||
.sort()
|
||||
.buffer(200)
|
||||
.concatMap(list -> findSettings(group.key(), list)));
|
||||
}
|
||||
|
||||
protected Flux<AuthorizationSettingEntity> findSettings(String type, List<String> target) {
|
||||
|
||||
Reference in New Issue
Block a user