connector.updatePlayerStatus(true);
} else {
// broken connection so attempt to reconnect
logger.debug("Broken connection found for '{}', attempting to reconnect...", entry.getKey());
try {
connector.open();
} catch (Exception e) {
logger.debug("Reconnect failed for '{}', will retry in {}s", entry.getKey(), refreshInterval / 1000);
}
}
}