HHH-11728 - Typo in PooledConnections

This commit is contained in:
Rafał Osiecki 2017-05-06 13:10:58 +02:00 committed by Vlad Mihalcea
parent 44eedfc34f
commit 86dd0d1278
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class PooledConnections {
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 {