Skip to content
Snippets Groups Projects
Commit 8c109637 authored by srosse's avatar srosse
Browse files

no-jira: fix total number of connections for tomcat connection pool

parent 07735547
No related branches found
No related tags found
No related merge requests found
......@@ -204,7 +204,7 @@ public class DatabaseWebService {
}
vo.setActiveConnectionCount(activeConnectionCount);
vo.setCurrentConnectionCount(activeConnectionCount - idleConnectionCount);
vo.setCurrentConnectionCount(activeConnectionCount + idleConnectionCount);
}
} catch (Exception e) {
log.error("", e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment