Bugfix
This commit is contained in:
parent
e72b2ca93c
commit
79ba4d8dd2
@ -65,8 +65,8 @@ public interface DatabaseStageMap<T, U, US extends DatabaseStage<U>> extends Dat
|
|||||||
|
|
||||||
default Flux<Entry<T, U>> getAllValues(@Nullable CompositeSnapshot snapshot) {
|
default Flux<Entry<T, U>> getAllValues(@Nullable CompositeSnapshot snapshot) {
|
||||||
return this
|
return this
|
||||||
.getAllStages(null)
|
.getAllStages(snapshot)
|
||||||
.flatMap(entry -> entry.getValue().get(null).map(value -> Map.entry(entry.getKey(), value)));
|
.flatMap(entry -> entry.getValue().get(snapshot).map(value -> Map.entry(entry.getKey(), value)));
|
||||||
}
|
}
|
||||||
|
|
||||||
default Mono<Void> setAllValues(Flux<Entry<T, U>> entries) {
|
default Mono<Void> setAllValues(Flux<Entry<T, U>> entries) {
|
||||||
|
Loading…
Reference in New Issue
Block a user