Skip to content

Commit f7ea483

Browse files
committed
Disable tests on newer Java versions due to non-deterministic timeouts.
See #1139.
1 parent c2c1247 commit f7ea483

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

spring-data-cassandra/src/test/java/org/springframework/data/cassandra/config/KeyspaceCreatingJavaConfigIntegrationTests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
import java.util.List;
2222

2323
import org.junit.jupiter.api.Test;
24+
import org.junit.jupiter.api.condition.DisabledForJreRange;
25+
import org.junit.jupiter.api.condition.JRE;
2426

2527
import org.springframework.beans.factory.annotation.Autowired;
2628
import org.springframework.context.annotation.Configuration;
@@ -39,6 +41,7 @@
3941
* @author Mark Paluch
4042
*/
4143
@SpringJUnitConfig(classes = KeyspaceCreatingJavaConfigIntegrationTests.KeyspaceCreatingJavaConfig.class)
44+
@DisabledForJreRange(min = JRE.JAVA_9)
4245
class KeyspaceCreatingJavaConfigIntegrationTests extends AbstractKeyspaceCreatingIntegrationTests {
4346

4447
@Autowired CqlSession session;

0 commit comments

Comments
 (0)