Fix compatibility with the latest Reactor

* Fix missed long-running tests according components under testing changes
This commit is contained in:
Artem Bilan
2020-10-08 12:41:35 -04:00
parent d020d7abfb
commit 20348ae38f
3 changed files with 43 additions and 45 deletions

View File

@@ -894,7 +894,7 @@ public abstract class MessagingGatewaySupport extends AbstractEndpoint
@Override
public boolean send(Message<?> message, long timeout) {
return this.replyMono.tryEmitValue(message).hasSucceeded();
return this.replyMono.tryEmitValue(message).isSuccess();
}
@Override