Commit f07250f6 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Second one should have been maximum.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9959 b35dd754-fafc-0310-a699-88a17e54d16e
parent 556c8f63
......@@ -382,7 +382,7 @@ public class DefaultConnectionProvider implements ConnectionProvider {
try {
ConnectionPoolDefinitionIF poolDef = ProxoolFacade.getConnectionPoolDefinition("openfire");
SnapshotIF poolStats = ProxoolFacade.getSnapshot("openfire", true);
return poolDef.getMinimumConnectionCount()+","+poolDef.getMinimumConnectionCount()+","
return poolDef.getMinimumConnectionCount()+","+poolDef.getMaximumConnectionCount()+","
+poolStats.getAvailableConnectionCount()+","+poolStats.getActiveConnectionCount();
}
catch (ProxoolException e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment