Use new Single.subscribe(...) overload introduced in #3112 that takes errorConsumer to avoid using extra operator whenOnError. It will also help to avoid logging those exceptions by SimpleSingleSubscriber (hard to relate to a real request) and instead they will only bubble up on the caller path.
Use new
Single.subscribe(...)
overload introduced in #3112 that takeserrorConsumer
to avoid using extra operatorwhenOnError
. It will also help to avoid logging those exceptions bySimpleSingleSubscriber
(hard to relate to a real request) and instead they will only bubble up on the caller path.