Fix for ServerMonitor not loading database config

This commit is contained in:
Shaun Bennett 2016-02-20 00:48:30 -06:00
parent b46e1bc37d
commit 3a73b05895
1 changed files with 3 additions and 0 deletions

View File

@ -79,6 +79,9 @@ public final class DBPool
public static DataSource getServerStats() public static DataSource getServerStats()
{ {
if (SERVER_STATS == null)
loadDataSources();
return SERVER_STATS; return SERVER_STATS;
} }