Fall back to the loopback address when resolving autoconfigured remote (#2090)

This way, if it errors, you're not stuck with 'unknown host: auto' when actually connecting.
This commit is contained in:
Camotoy 2021-04-16 11:28:15 -04:00 committed by GitHub
parent 70e28604b8
commit 6a88a46b51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -160,12 +160,13 @@ public class GeyserConnector {
if (config.isDebugMode()) {
ex.printStackTrace();
}
config.getRemote().setAddress(InetAddress.getLoopbackAddress().getHostAddress());
}
}
String remoteAddress = config.getRemote().getAddress();
int remotePort = config.getRemote().getPort();
// Filters whether it is not an IP address or localhost, because otherwise it is not possible to find out an SRV entry.
if (!remoteAddress.matches(IP_REGEX) && !remoteAddress.equalsIgnoreCase("localhost")) {
int remotePort;
try {
// Searches for a server address and a port from a SRV record of the specified host name
InitialDirContext ctx = new InitialDirContext();