Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool
In directory sc8-pr-cvs1:/tmp/cvs-serv1029/src/java/org/logicalcobwebs/proxool
Modified Files:
ConnectionPoolDefinition.java
Log Message:
Fixed bug where all proxool properties were getting passed onto the delegate driver, and all delegate properties weren't
Index: ConnectionPoolDefinition.java
===================================================================
RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ConnectionPoolDefinition.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** ConnectionPoolDefinition.java 24 Oct 2003 15:22:21 -0000 1.28
--- ConnectionPoolDefinition.java 30 Oct 2003 00:13:59 -0000 1.29
***************
*** 382,386 ****
}
! if (key.startsWith(ProxoolConstants.PROPERTY_PREFIX)) {
if (isChanged(getDelegateProperty(key), value)) {
changed = true;
--- 382,386 ----
}
! if (!key.startsWith(ProxoolConstants.PROPERTY_PREFIX)) {
if (isChanged(getDelegateProperty(key), value)) {
changed = true;
***************
*** 1132,1135 ****
--- 1132,1138 ----
Revision history:
$Log$
+ Revision 1.29 2003/10/30 00:13:59 billhorsman
+ Fixed bug where all proxool properties were getting passed onto the delegate driver, and all delegate properties weren't
+
Revision 1.28 2003/10/24 15:22:21 billhorsman
Fixed bug where connection pool was being recognised as changed even when it wasn't. (This bug introduced after 0.7.2).
|