Temporarily disable h2c tests with Jetty 10

Closes gh-26038
This commit is contained in:
Andy Wilkinson
2021-04-13 10:22:57 +01:00
parent 1e059da1e2
commit 74b91b78fe
2 changed files with 7 additions and 1 deletions

View File

@@ -54,4 +54,10 @@ public class Jetty10ServletWebServerFactoryTests extends JettyServletWebServerFa
protected void jettyConfigurations() throws Exception {
}
@Override
@Disabled("https://github.com/eclipse/jetty.project/issues/6164")
protected void whenHttp2IsEnabledAndSslIsDisabledThenH2cCanBeUsed() {
}
}

View File

@@ -1130,7 +1130,7 @@ public abstract class AbstractServletWebServerFactoryTests {
}
@Test
void whenHttp2IsEnabledAndSslIsDisabledThenH2cCanBeUsed()
protected void whenHttp2IsEnabledAndSslIsDisabledThenH2cCanBeUsed()
throws InterruptedException, ExecutionException, IOException {
AbstractServletWebServerFactory factory = getFactory();
Http2 http2 = new Http2();