Skip to content

Commit 9229e7f

Browse files
committed
HHH-19336 - Proper implementation for JPA extended locking scope
HHH-19459 - LockScope, FollowOnLocking HHH-19501 - Session#lock w/ pessimistic locks for scopes HHH-19502 - Disallow SKIP_LOCKED with Session#lock
1 parent cfbb66c commit 9229e7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-testing/src/main/java/org/hibernate/testing/orm/transaction/TransactionUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public static void deleteFromTable(SessionFactoryScope factoryScope, String tabl
166166
}
167167
catch (RuntimeException re) {
168168
if ( re.getCause() instanceof ConstraintViolationException cve ) {
169-
System.out.println( "deleting from table did not block, but did lead to ConstraintViolationException");
169+
log.debug( "deleting from table did not block, but did lead to ConstraintViolationException", cve );
170170
return;
171171
}
172172
throw re;

0 commit comments

Comments
 (0)