Disables test failing with boot 2.6.11 and managed jetty version

See gh-2142
This commit is contained in:
spencergibb
2022-09-02 11:35:51 -04:00
parent 7434ff895b
commit 3cd38b04f2

View File

@@ -28,6 +28,7 @@ import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnJre;
import org.junit.jupiter.api.condition.JRE;
@@ -69,6 +70,7 @@ public class HttpClientSupportTest {
@Test
@EnabledOnJre(JRE.JAVA_8)
@Disabled // https://github.com/spring-cloud/spring-cloud-config/issues/2142
public void httpsProxy() throws GeneralSecurityException, IOException {
WireMockServer wireMockProxyServer = new WireMockServer(
options().httpDisabled(true).dynamicHttpsPort().enableBrowserProxying(true).trustAllProxyTargets(true));