So I have the following piece of code to do a GET to a remote machine:
webClient.get() .uri(myUri) .accept(MediaType.APPLICATION_JSON) .retrieve() .bodyToMono(String.class) .subscribe(text -> { LOG.info(text); }); I get this exception, no problem, I'm expecting it, but it's really hard to find any documentation how to handle these errors:
reactor.core.Exceptions$ErrorCallbackNotImplemented: java.net.UnknownHostException