Skip to content

Commit

Permalink
HHH-11728 - Typo in PooledConnections
Browse files Browse the repository at this point in the history
  • Loading branch information
rosiecki authored and vladmihalcea committed May 8, 2017
1 parent 44eedfc commit 86dd0d1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -89,7 +89,7 @@ public void close() throws SQLException {
try {
int allocationCount = allConnections.size() - availableConnections.size();
if(allocationCount > 0) {
log.error( "Collection leak detected: there are " + allocationCount + " unclosed connections upon shutting down pool " + getUrl());
log.error( "Connection leak detected: there are " + allocationCount + " unclosed connections upon shutting down pool " + getUrl());
}
}
finally {
Expand Down

0 comments on commit 86dd0d1

Please sign in to comment.