From a29e13bd57146d0826b7c6dece3d7b0d830b3820 Mon Sep 17 00:00:00 2001 From: Markus Machatschek Date: Mon, 15 Mar 2021 14:32:05 +0100 Subject: [PATCH] Add ssl broken pipe as lost connection error (#36601) --- DetectsLostConnections.php | 1 + 1 file changed, 1 insertion(+) diff --git a/DetectsLostConnections.php b/DetectsLostConnections.php index 1ecfc9614..a0bad6718 100644 --- a/DetectsLostConnections.php +++ b/DetectsLostConnections.php @@ -50,6 +50,7 @@ protected function causedByLostConnection(Throwable $e) 'SSL: Connection timed out', 'SQLSTATE[HY000]: General error: 1105 The last transaction was aborted due to Seamless Scaling. Please retry.', 'Temporary failure in name resolution', + 'SSL: Broken pipe', ]); } }