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
This commit is contained in:
Artem Bilan
2018-07-27 09:10:34 -04:00
parent 0c65bb741b
commit 8b13b2861d

View File

@@ -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();