[Proxool-cvs] proxool/src/java-test/org/logicalcobwebs/proxool ManyPoolsTest.java,1.2,1.3
UNMAINTAINED!
Brought to you by:
billhorsman
From: <bil...@us...> - 2004-07-13 20:37:06
|
Update of /cvsroot/proxool/proxool/src/java-test/org/logicalcobwebs/proxool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6561/src/java-test/org/logicalcobwebs/proxool Modified Files: ManyPoolsTest.java Log Message: Open a different database for each pool. Otherwise Hypersonic has some threading issues. Index: ManyPoolsTest.java =================================================================== RCS file: /cvsroot/proxool/proxool/src/java-test/org/logicalcobwebs/proxool/ManyPoolsTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ManyPoolsTest.java 26 May 2004 17:19:09 -0000 1.2 --- ManyPoolsTest.java 13 Jul 2004 20:36:57 -0000 1.3 *************** *** 53,57 **** + TestConstants.HYPERSONIC_DRIVER + ProxoolConstants.URL_DELIMITER ! + TestConstants.HYPERSONIC_TEST_URL; ProxoolFacade.registerConnectionPool(url, info); } --- 53,57 ---- + TestConstants.HYPERSONIC_DRIVER + ProxoolConstants.URL_DELIMITER ! + TestConstants.HYPERSONIC_URL_PREFIX + i; ProxoolFacade.registerConnectionPool(url, info); } *************** *** 75,78 **** --- 75,81 ---- Revision history: $Log$ + Revision 1.3 2004/07/13 20:36:57 billhorsman + Open a different database for each pool. Otherwise Hypersonic has some threading issues. + Revision 1.2 2004/05/26 17:19:09 brenuart Allow JUnit tests to be executed against another database. |