Skip to content

Commit 053f256

Browse files
committed
Merge branch '4.1.x' into 4.2.x
2 parents 223c1ee + 131123c commit 053f256

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Diff for: docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@antora/atlas-extension": "1.0.0-alpha.2",
55
"@antora/collector-extension": "1.0.1",
66
"@asciidoctor/tabs": "1.0.0-beta.6",
7-
"@springio/antora-extensions": "1.14.2",
8-
"@springio/asciidoctor-extensions": "1.0.0-alpha.14"
7+
"@springio/antora-extensions": "1.14.4",
8+
"@springio/asciidoctor-extensions": "1.0.0-alpha.16"
99
}
1010
}

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)