Skip to content

Commit a729fc0

Browse files
committed
Merge branch '4.2.x'
2 parents ff60af8 + 053f256 commit a729fc0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/test/CustomBlockHoundIntegrationTest.java

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package org.springframework.cloud.gateway.test;
1818

1919
import org.junit.jupiter.api.Assertions;
20+
import org.junit.jupiter.api.Disabled;
2021
import org.junit.jupiter.api.Test;
2122
import org.junit.jupiter.api.condition.DisabledForJreRange;
2223
import org.junit.jupiter.api.condition.JRE;
@@ -30,6 +31,8 @@ public class CustomBlockHoundIntegrationTest {
3031

3132
@Test
3233
@DisabledForJreRange(min = JRE.JAVA_18)
34+
// Disable this test for now flaky on GitHub Actions
35+
@Disabled
3336
public void shouldThrowErrorForBlockingCallWithCustomBlockHoundIntegration() {
3437
Assertions.assertThrows(RuntimeException.class, () -> Mono.fromCallable(() -> {
3538
Thread.sleep(1);

0 commit comments

Comments
 (0)