From 0e062058e6159ca8db6716e8362361be0b1573b2 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Sat, 15 Oct 2016 21:01:03 +0300 Subject: [PATCH] Do not shunt the server if max_user_connections is reached for user --- lib/MySQL_HostGroups_Manager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/MySQL_HostGroups_Manager.cpp b/lib/MySQL_HostGroups_Manager.cpp index 95929836a..11b95b73c 100644 --- a/lib/MySQL_HostGroups_Manager.cpp +++ b/lib/MySQL_HostGroups_Manager.cpp @@ -140,6 +140,7 @@ void MySrvC::connect_error(int err_num) { case 1044: // access denied case 1045: // access denied case 1049: //Unknown databas + case 1226: // do not increase counter to avoid Shunning if user has max_user_connections restriction return; break; default: