Expand except to be more general to catch windows connection forcibly closed error

This commit is contained in:
amcmanu3 2022-03-01 19:47:29 -05:00
parent bbe9321516
commit de3ec1fa3b

View File

@ -182,5 +182,5 @@ def ping_bedrock(ip, port):
try:
brp = BedrockPing(ip, port, client_guid)
return brp.ping()
except socket.timeout:
except:
logger.debug("Unable to get RakNet stats")