Skip to content

Commit

Permalink
JVMCBC-1163: Update dependencies (part 3)
Browse files Browse the repository at this point in the history
Core:
reactor-core 3.4.24 -> 3.5.0

Change-Id: Ief7cd666bccc8652d71882d8df606f32bf99c7f4
Reviewed-on: https://review.couchbase.org/c/couchbase-jvm-clients/+/183001
Tested-by: Build Bot <build@couchbase.com>
Reviewed-by: David Nault <david.nault@couchbase.com>
  • Loading branch information
programmatix committed Dec 2, 2022
1 parent 100d373 commit 598ed7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public MonoBridge(Mono<T> feedFrom, String dbg, Object syncer, @Nullable CoreTra
// Even though a Mono still need to propagate onComplete in case it's Mono<Void>
if (!done) {
if (logger != null) logger.info("", "MB: [%s] propagating complete", dbg);
actual.tryEmitValue(null);
actual.tryEmitEmpty();
} else if (logger != null)
logger.info("", "MB: [%s] skipping complete propagating as done", dbg);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public Mono<Void> done(Waiter waiter) {

// Signal the awaiter, making sure to do it outside synchronization for safety.
if (notifier != null) {
notifier.tryEmitValue(null).orThrow();
notifier.tryEmitEmpty().orThrow();
}

return Mono.empty();
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<log4j-slf4j-impl.version>2.19.0</log4j-slf4j-impl.version>

<jackson.version>2.14.0</jackson.version>
<reactor.version>3.4.24</reactor.version>
<reactor.version>3.5.0</reactor.version>
<reactive-streams.version>1.0.4</reactive-streams.version>
<blockhound.version>1.0.6.RELEASE</blockhound.version>
<log4j.version>1.2.17</log4j.version>
Expand Down

0 comments on commit 598ed7a

Please sign in to comment.