parent
d3861bcaef
commit
e6e7357303
|
|
@ -1765,11 +1765,7 @@ bom {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
library("Undertow", "2.3.13.Final") {
|
library("Undertow", "2.3.17.Final") {
|
||||||
prohibit {
|
|
||||||
versionRange "[2.3.14.Final,2.3.15.Final]"
|
|
||||||
because "it contains a regression (https://issues.redhat.com/browse/UNDERTOW-2420)"
|
|
||||||
}
|
|
||||||
group("io.undertow") {
|
group("io.undertow") {
|
||||||
modules = [
|
modules = [
|
||||||
"undertow-core",
|
"undertow-core",
|
||||||
|
|
|
||||||
|
|
@ -243,6 +243,13 @@ class UndertowServletWebServerFactoryTests extends AbstractServletWebServerFacto
|
||||||
this.webServer.stop();
|
this.webServer.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Override
|
||||||
|
@Disabled("https://issues.redhat.com/browse/UNDERTOW-2420")
|
||||||
|
protected void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception {
|
||||||
|
super.portClashOfSecondaryConnectorResultsInPortInUseException();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Override
|
@Override
|
||||||
@Disabled("Restart after stop is not supported with Undertow")
|
@Disabled("Restart after stop is not supported with Undertow")
|
||||||
|
|
|
||||||
|
|
@ -1094,7 +1094,7 @@ public abstract class AbstractServletWebServerFactoryTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception {
|
protected void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception {
|
||||||
doWithBlockedPort((port) -> {
|
doWithBlockedPort((port) -> {
|
||||||
assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> {
|
assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> {
|
||||||
AbstractServletWebServerFactory factory = getFactory();
|
AbstractServletWebServerFactory factory = getFactory();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue