Browse Source

Disable concurrency tests for now.

See #2176
pull/2193/head
Mark Paluch 2 weeks ago
parent
commit
4a4450712b
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 2
      spring-data-jdbc/src/test/java/org/springframework/data/jdbc/repository/JdbcRepositoryConcurrencyIntegrationTests.java

2
spring-data-jdbc/src/test/java/org/springframework/data/jdbc/repository/JdbcRepositoryConcurrencyIntegrationTests.java

@ -30,6 +30,7 @@ import java.util.function.UnaryOperator; @@ -30,6 +30,7 @@ import java.util.function.UnaryOperator;
import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.platform.commons.util.ExceptionUtils;
@ -55,6 +56,7 @@ import org.springframework.transaction.support.TransactionTemplate; @@ -55,6 +56,7 @@ import org.springframework.transaction.support.TransactionTemplate;
* @author Mikhail Polivakha
*/
@ExtendWith(SpringExtension.class)
@Disabled("Deadlock found when trying to get lock; try restarting transaction")
public class JdbcRepositoryConcurrencyIntegrationTests {
@Configuration

Loading…
Cancel
Save