From 4688ffe3674a2b299af0d05b969fb6b760c5f0f7 Mon Sep 17 00:00:00 2001 From: Adam Tester Date: Tue, 12 Jun 2018 15:16:15 +0100 Subject: [PATCH] Two Azure SQL Server "connection lost" messages --- src/Illuminate/Database/DetectsLostConnections.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Illuminate/Database/DetectsLostConnections.php b/src/Illuminate/Database/DetectsLostConnections.php index 4cac2b6f00ee..8e3ec7d103f3 100644 --- a/src/Illuminate/Database/DetectsLostConnections.php +++ b/src/Illuminate/Database/DetectsLostConnections.php @@ -32,6 +32,8 @@ protected function causedByLostConnection(Throwable $e) 'child connection forced to terminate due to client_idle_limit', 'query_wait_timeout', 'reset by peer', + 'Physical connection is not usable', + 'TCP Provider: Error code 0x68', ]); } }