diff --git a/src/DetectsLostConnections.php b/src/DetectsLostConnections.php index 94d0fb2..a3bfc68 100644 --- a/src/DetectsLostConnections.php +++ b/src/DetectsLostConnections.php @@ -45,6 +45,12 @@ protected function causedByLostConnection(Throwable $e): bool 'Packets out of order. Expected', 'Broken pipe', 'Error reading result', + // PDO::prepare(): Send of 77 bytes failed with errno=110 Operation timed out + // SSL: Handshake timed out + // SSL: Operation timed out + // SSL: Connection timed out + // SQLSTATE[HY000] [2002] Connection timed out + 'timed out', ]); } }