From 07c17d1fc4ff5420fd5dbd91480c7ab9167f95fb Mon Sep 17 00:00:00 2001 From: Michel Bardelmeijer Date: Fri, 19 Mar 2021 15:00:44 +0100 Subject: [PATCH] Add WSREP communication link failure for lost connection detection (#36668) --- DetectsLostConnections.php | 1 + 1 file changed, 1 insertion(+) diff --git a/DetectsLostConnections.php b/DetectsLostConnections.php index a0bad6718..191eefedc 100644 --- a/DetectsLostConnections.php +++ b/DetectsLostConnections.php @@ -51,6 +51,7 @@ protected function causedByLostConnection(Throwable $e) 'SQLSTATE[HY000]: General error: 1105 The last transaction was aborted due to Seamless Scaling. Please retry.', 'Temporary failure in name resolution', 'SSL: Broken pipe', + 'SQLSTATE[08S01]: Communication link failure', ]); } }