This is an automated email from the ASF dual-hosted git repository. jlmonteiro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee-tck.git
commit 38c434e7ccc2b5b159231c98e14e43b6c0b1da6e Author: Jean-Louis Monteiro <[email protected]> AuthorDate: Wed Jan 27 00:24:35 2021 +0100 See if random failures on EJB 30 get somehow better by checking the connection before. It might get the build slower though. But this is a test --- src/test/tomee-plume/conf/tomee.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test/tomee-plume/conf/tomee.xml b/src/test/tomee-plume/conf/tomee.xml index d1e87f1..70b638e 100644 --- a/src/test/tomee-plume/conf/tomee.xml +++ b/src/test/tomee-plume/conf/tomee.xml @@ -55,6 +55,7 @@ JdbcUrl jdbc:derby://localhost:%derby.server.port%/derbydb;create=true UserName cts Password cts + testOnBorrow=true </Resource> <Resource id="jdbc/DB1" type="DataSource"> @@ -62,6 +63,7 @@ JdbcUrl jdbc:derby://localhost:%derby.server.port%/derbydb;create=true UserName cts Password cts + testOnBorrow=true </Resource> <Resource id="jdbc/DB1Unmanaged" type="DataSource"> @@ -70,6 +72,7 @@ UserName cts Password cts JtaManaged false + testOnBorrow=true </Resource> <Resource id="jdbc/DB" type="DataSource"> @@ -77,6 +80,7 @@ JdbcUrl jdbc:derby://localhost:%derby.server.port%/derbydb;create=true UserName cts Password cts + testOnBorrow=true </Resource> <Resource id="jdbc/DB_no_tx" type="DataSource"> @@ -85,6 +89,7 @@ UserName cts Password cts JtaManaged false + testOnBorrow=true </Resource>
