Update to Reactor 2.1.0.BUILD-SNAPSHOT

This commit is contained in:
Stephane Maldini
2015-09-29 23:31:02 +01:00
parent 4ffec61310
commit d20fbffcd0
3 changed files with 4 additions and 8 deletions
@@ -23,7 +23,7 @@ import java.util.concurrent.CompletableFuture;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
import reactor.core.support.Exceptions;
import reactor.core.error.Exceptions;
import reactor.rx.Stream;
import reactor.rx.action.Action;
import reactor.rx.subscription.ReactiveSubscription;
@@ -131,8 +131,7 @@ public class CompletableFutureUtils {
}
});
} catch (Throwable throwable) {
Exceptions.throwIfFatal(throwable);
subscriber.onError(throwable);
Exceptions.publisher(throwable);
}
}