Hi,
I've been getting io.netty.resolver.dns.DnsNameResolverContext$SearchDomainUnknownHostException: Search domain query failed exception for multiple endpoints(including google maps API endpoint) for some time now when I run the code on my local machine.
However, when I ping the endpoints, I am able to get the response. I've disabled firewall on my machine.
Pasting a sample request:
webClient.getAbs("API_END_POINT")
.rxSend()
.subscribe(bufferHttpResponse -> {
System.out.println(bufferHttpResponse.bodyAsString());
}, System.out::println);