From ff0e14608a98fc52c777952e7ff70213afecbc3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Mon, 15 Feb 2016 10:13:31 +0000 Subject: [PATCH] Fix error on Server shutdown in progress Fix bug #476 --- lib/MySQL_Session.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index 385364a63..d194874af 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -957,6 +957,7 @@ handler_again: } case 1290: // read-only case 1047: // WSREP has not yet prepared node for application use + case 1053: // Server shutdown in progress if ((myds->myconn->reusable==true) && myds->myconn->IsActiveTransaction()==false && myds->myconn->MultiplexDisabled()==false) { retry_conn=true; }