Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.1
-
Fix Version/s: 2.1.0
-
Labels:None
-
Environment:tomcat
-
Number of attachments :
Description
This happens, since Bitronix cleanup code for connections does something like this:
while (connections > minConnections):
release one connection if it's too old
Istead of this, it should do:
for each connection:
check and drop if it's too old
...
Regards
Fix for 1.3.3 and trunk.
Regards