// Get the host-controller server client
final ServiceContainer container = containerFuture.get();
final ServiceController<?> controller = container.getRequiredService(HostControllerServerClient.SERVICE_NAME);
final HostControllerServerClient client = (HostControllerServerClient) controller.getValue();
// Reconnect to the host-controller
client.reconnect(hostName, port, asAuthKey);
} catch (InterruptedIOException e) {
Thread.interrupted();
// ignore
} catch (EOFException e) {