Upgrade to Undertow 2.3.17.Final

Closes gh-42302
This commit is contained in:
Stéphane Nicoll 2024-09-13 16:24:43 +02:00
parent d3861bcaef
commit e6e7357303
3 changed files with 9 additions and 6 deletions

View File

@ -1765,11 +1765,7 @@ bom {
]
}
}
library("Undertow", "2.3.13.Final") {
prohibit {
versionRange "[2.3.14.Final,2.3.15.Final]"
because "it contains a regression (https://issues.redhat.com/browse/UNDERTOW-2420)"
}
library("Undertow", "2.3.17.Final") {
group("io.undertow") {
modules = [
"undertow-core",

View File

@ -243,6 +243,13 @@ class UndertowServletWebServerFactoryTests extends AbstractServletWebServerFacto
this.webServer.stop();
}
@Test
@Override
@Disabled("https://issues.redhat.com/browse/UNDERTOW-2420")
protected void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception {
super.portClashOfSecondaryConnectorResultsInPortInUseException();
}
@Test
@Override
@Disabled("Restart after stop is not supported with Undertow")

View File

@ -1094,7 +1094,7 @@ public abstract class AbstractServletWebServerFactoryTests {
}
@Test
void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception {
protected void portClashOfSecondaryConnectorResultsInPortInUseException() throws Exception {
doWithBlockedPort((port) -> {
assertThatExceptionOfType(RuntimeException.class).isThrownBy(() -> {
AbstractServletWebServerFactory factory = getFactory();