HHH-16275 also wait longer for LockTest.testLockUpdateFkTarget

Signed-off-by: Scott Marlow <smarlow@redhat.com>
This commit is contained in:
Scott Marlow 2023-06-05 17:22:58 -04:00 committed by Christian Beikov
parent 282dd84614
commit a175afdaf1
1 changed files with 2 additions and 2 deletions

View File

@ -1205,7 +1205,7 @@ public class LockTest extends BaseEntityManagerFunctionalTestCase {
} );
}
@Test(timeout = 5 * 1000) //5 seconds
@Test(timeout = 70 * 1000) //70 seconds
@TestForIssue( jiraKey = "HHH-13135" )
@SkipForDialect(value = {
MySQLDialect.class,
@ -1237,7 +1237,7 @@ public class LockTest extends BaseEntityManagerFunctionalTestCase {
assertEquals( "lock mode should be PESSIMISTIC_WRITE ", LockModeType.PESSIMISTIC_WRITE, _entityManager.getLockMode( l2 ) );
doInJPA( this::entityManagerFactory, entityManager -> {
TransactionUtil.setJdbcTimeout( entityManager.unwrap( Session.class ) );
TransactionUtil.setJdbcTimeout( entityManager.unwrap( Session.class ), 60*1000L ); // wait up to a minute );
LockReference lockReference = entityManager.find( LockReference.class, ref.getId() );
// Check that we can update a LockReference, referring to a Lock that is PESSIMISTIC_WRITE locked