Skip to content

Commit

Permalink
refactor ReactiveMemoryDataAccess#query
Browse files Browse the repository at this point in the history
  • Loading branch information
f0rb committed Dec 6, 2023
1 parent 7e77091 commit 6b3914c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public Mono<E> create(E e) {

@Override
public Flux<E> query(Q q) {
return Flux.fromStream(() -> delegate.query(q).stream());
return Flux.fromIterable(delegate.query(q));
}

@Override
Expand Down

0 comments on commit 6b3914c

Please sign in to comment.