Get the parentheses right.

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