Ignore Testing groups in server monitor.

This commit is contained in:
Jonathan Williams 2015-03-13 03:21:50 -07:00
parent 28f73704e5
commit 4017ec95c0
1 changed files with 4 additions and 0 deletions

View File

@ -452,6 +452,10 @@ public class ServerMonitor
if (joinableServers > maxUHC)
serversToKill = maxUHC - joinableServers;
}
else if (serverGroup.getName().equalsIgnoreCase("Testing"))
{
return;
}
// KILL, CLEAN, THEN ADD
while (serversToKill > 0)