Author: psteitz
Date: Fri May 2 23:44:50 2014
New Revision: 1592123
URL: http://svn.apache.org/r1592123
Log:
Updated change log for DBCP-414.
Modified:
commons/proper/dbcp/trunk/src/changes/changes.xml
Modified: commons/proper/dbcp/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/changes/changes.xml?rev=1592123&r1=1592122&r2=1592123&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/src/changes/changes.xml (original)
+++ commons/proper/dbcp/trunk/src/changes/changes.xml Fri May 2 23:44:50 2014
@@ -64,6 +64,11 @@ The <action> type attribute can be add,u
<action dev="markt" type="fix">
Small performance improvements when returning connections to the pool.
</action>
+ <action issue="DBCP-414" dev="markt" type="fix" due-to="Pasi Eronen">
+ Fixed DelegatingStatement close to ensure closed statements do not
retain references
+ to pooled prepared statements. Due to finalization code added in 2.0,
this was causing
+ pooled prepared statements to be closed by GC while in use by clients.
+ </action>
<action issue="DBCP-412" dev="psteitz" type="update">
Added check in PoolingDataSource constructor to ensure that the
connection factory
and pool are properly linked.