HHH-5838 - Proxool connection pool should only close pools it opened

This commit is contained in:
Sanne Grinovero 2011-01-13 11:49:42 +00:00
parent 3fab254606
commit 90bb8634df
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ public class ProxoolConnectionProvider implements ConnectionProvider {
// We have created the pool ourselves, so shut it down // We have created the pool ourselves, so shut it down
try { try {
ProxoolFacade.shutdown(0); ProxoolFacade.removeConnectionPool(proxoolAlias.substring(PROXOOL_JDBC_STEM.length()));
} }
catch (Exception e) { catch (Exception e) {
// If you're closing down the ConnectionProvider chances are an // If you're closing down the ConnectionProvider chances are an