Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.2
-
None
-
Operating System: All
Platform: All
-
34296
Description
The following code in GenericObjectPool.borrowObject is causing a
pool "leaking" in our system, when factory.makeObject throws a Throwable in the
following piece of code:
if(null == pair) {
try
catch (Exception e) {
// object cannot be created
synchronized(this)
throw e;
}
}