Change the port number to check

This commit is contained in:
zontreck 2024-06-05 21:22:00 -07:00
parent 35554c8de3
commit f976346b2d

View file

@ -264,7 +264,9 @@ class StateMachine {
Socket sock = await Socket.connect(
"127.0.0.1", settings.inst!.serverSettings.RconPort);
await sock.close();
} catch (E) {
} catch (E, stack) {
print("Dead process checker caught: ${E}\n\n${stack}\n\n");
DeadProcKillswitch.complete();
}
}