diff --git a/spring-cloud-gateway-webflux/src/test/java/org/springframework/cloud/gateway/webflux/ProductionConfigurationTests.java b/spring-cloud-gateway-webflux/src/test/java/org/springframework/cloud/gateway/webflux/ProductionConfigurationTests.java index 374bbfa5..bd101b71 100644 --- a/spring-cloud-gateway-webflux/src/test/java/org/springframework/cloud/gateway/webflux/ProductionConfigurationTests.java +++ b/spring-cloud-gateway-webflux/src/test/java/org/springframework/cloud/gateway/webflux/ProductionConfigurationTests.java @@ -24,6 +24,7 @@ import java.util.Map; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; @@ -244,6 +245,7 @@ public class ProductionConfigurationTests { } @Test + @Disabled("https://github.com/spring-cloud/spring-cloud-gateway/issues/3562") public void forwardedHeaderUsesHost() throws Exception { Map> headers = rest .exchange(RequestEntity.get(rest.getRestTemplate().getUriTemplateHandler().expand("/proxy/headers")) @@ -264,6 +266,7 @@ public class ProductionConfigurationTests { } @Test + @Disabled("https://github.com/spring-cloud/spring-cloud-gateway/issues/3562") public void deleteWithBody() throws Exception { Foo foo = new Foo("to-be-deleted"); ParameterizedTypeReference> returnType = new ParameterizedTypeReference>() { diff --git a/spring-cloud-gateway-webflux/src/test/resources/application.properties b/spring-cloud-gateway-webflux/src/test/resources/application.properties index 39b304fd..a3eb71eb 100644 --- a/spring-cloud-gateway-webflux/src/test/resources/application.properties +++ b/spring-cloud-gateway-webflux/src/test/resources/application.properties @@ -1 +1,2 @@ -logging.level.org.springframework.web.reactive=DEBUG +logging.level.org.springframework.web=DEBUG +debug=true