This is an automated email from the ASF dual-hosted git repository.

psteitz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git


The following commit(s) were added to refs/heads/master by this push:
     new 1eee7842 Remove unecessary (and not always correct) setter.
1eee7842 is described below

commit 1eee7842f15ad717aaf61b1eb6cb91ac86c2718c
Author: Phil Steitz <phil.ste...@gmail.com>
AuthorDate: Thu Feb 15 18:35:11 2024 -0700

    Remove unecessary (and not always correct) setter.
---
 src/main/java/org/apache/commons/dbcp2/PoolableConnectionFactory.java | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/dbcp2/PoolableConnectionFactory.java 
b/src/main/java/org/apache/commons/dbcp2/PoolableConnectionFactory.java
index 51600251..ecdedf66 100644
--- a/src/main/java/org/apache/commons/dbcp2/PoolableConnectionFactory.java
+++ b/src/main/java/org/apache/commons/dbcp2/PoolableConnectionFactory.java
@@ -468,7 +468,6 @@ public class PoolableConnectionFactory implements 
PooledObjectFactory<PoolableCo
         pc.setCacheState(cacheState);
 
         final DefaultPooledObject<PoolableConnection> pooledObject = new 
DefaultPooledObject<>(pc);
-        pooledObject.setRequireFullStackTrace(true); 
         return pooledObject;
     }
 

Reply via email to