Skip to content

Commit

Permalink
Upgrade to Project Reactor 2022.0.3.
Browse files Browse the repository at this point in the history
[resolves #585]

Signed-off-by: Mark Paluch <mpaluch@vmware.com>
  • Loading branch information
mp911de committed Feb 16, 2023
1 parent 2581cf9 commit f69dcf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<r2dbc-spi.version>1.0.0.RELEASE</r2dbc-spi.version>
<reactor.version>2022.0.0</reactor.version>
<reactor.version>2022.0.3</reactor.version>
<scram-client.version>2.1</scram-client.version>
<spring-framework.version>5.3.23</spring-framework.version>
<testcontainers.version>1.17.5</testcontainers.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ void shouldNotConsumeItemsOnCancel() {
.thenCancel()
.verify();

assertThat(items).toIterable().containsSequence(2, 3);
// some prefetch is happening here. Was different in Reactor 3.5.0
//assertThat(items).toIterable().containsSequence(2, 3);
assertThat(items).toIterable().containsSequence(3);
}

@Test
Expand Down

0 comments on commit f69dcf1

Please sign in to comment.