Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool
In directory sc8-pr-cvs1:/tmp/cvs-serv6255/src/java/org/logicalcobwebs/proxool
Modified Files:
ConnectionPoolDefinition.java
Log Message:
fix to condition that meant configuration change was getting sent too often (and sometimes not at all)
Index: ConnectionPoolDefinition.java
===================================================================
RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ConnectionPoolDefinition.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** ConnectionPoolDefinition.java 19 Apr 2003 12:58:41 -0000 1.17
--- ConnectionPoolDefinition.java 27 Apr 2003 15:42:21 -0000 1.18
***************
*** 875,879 ****
public boolean isEqual(String url, Properties info) {
try {
! return doChange(url, info, true);
} catch (ProxoolException e) {
LOG.error("Problem checking equality", e);
--- 875,879 ----
public boolean isEqual(String url, Properties info) {
try {
! return !doChange(url, info, true);
} catch (ProxoolException e) {
LOG.error("Problem checking equality", e);
***************
*** 902,905 ****
--- 902,908 ----
Revision history:
$Log$
+ Revision 1.18 2003/04/27 15:42:21 billhorsman
+ fix to condition that meant configuration change was getting sent too often (and sometimes not at all)
+
Revision 1.17 2003/04/19 12:58:41 billhorsman
fixed bug where ConfigurationListener's
|