Add another "connection timed out" message pattern.

This commit is contained in:
Michael Bayne
2026-01-22 09:04:30 -08:00
parent 22e0aeab4a
commit 8800d4b7e2
@@ -32,7 +32,8 @@ public class MySQLLiaison extends BaseLiaison
String msg = sqe.getMessage(); String msg = sqe.getMessage();
return (msg != null && (msg.indexOf("Lost connection") != -1 || return (msg != null && (msg.indexOf("Lost connection") != -1 ||
msg.indexOf("link failure") != -1 || msg.indexOf("link failure") != -1 ||
msg.indexOf("Broken pipe") != -1)); msg.indexOf("Broken pipe") != -1 ||
msg.indexOf("The last packet successfully received") != -1));
} }
@Override // from DatabaseLiaison @Override // from DatabaseLiaison