Skip to content

Commit

Permalink
Adapt to Reactor Core change for deferring the NonBlocking rejection …
Browse files Browse the repository at this point in the history
…in toIterable

reactor/reactor-core#1318
  • Loading branch information
violetagg committed Aug 22, 2018
1 parent 3373c66 commit e079cab
Show file tree
Hide file tree
Showing 3 changed files with 159 additions and 96 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -894,9 +894,11 @@ public void closePool() {
Flux.range(1, 10)
.concatMap(i -> ws.take(2)
.log()))
.expectNextSequence(Flux.range(1, 20)
.map(v -> "test")
.toIterable())
.expectNextSequence(
Objects.requireNonNull(Flux.range(1, 20)
.map(v -> "test")
.collectList()
.block()))
.expectComplete()
.verify();

Expand Down
Loading

0 comments on commit e079cab

Please sign in to comment.