From 8b13b2861d7c47068b8c86397017b906e8fd4b30 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Fri, 27 Jul 2018 09:10:34 -0400 Subject: [PATCH] Revert to errorStrategyContinue in FluxMessageChe https://build.spring.io/browse/INT-MASTER-1134 According the latest released reactor-core-3.2.0.M2, there is no yet a `.onErrorContinue()` operator. We need to stick with the `.errorStrategyContinue()` for time being --- .../springframework/integration/channel/FluxMessageChannel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/channel/FluxMessageChannel.java b/spring-integration-core/src/main/java/org/springframework/integration/channel/FluxMessageChannel.java index 7a96f8335c..5106c8b784 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/channel/FluxMessageChannel.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/channel/FluxMessageChannel.java @@ -82,7 +82,7 @@ public class FluxMessageChannel extends AbstractMessageChannel ConnectableFlux connectableFlux = Flux.from(publisher) .handle((message, sink) -> sink.next(send(message))) - .onErrorContinue() + .errorStrategyContinue() .doOnComplete(() -> this.publishers.remove(publisher)) .publish();