Skip to content

Commit 8124ac2

Browse files
committed
Upgrade to Undertow 1.4.26.Final
Closes gh-13880
1 parent f638dd4 commit 8124ac2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-boot-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
<thymeleaf-extras-data-attribute.version>1.3</thymeleaf-extras-data-attribute.version>
188188
<thymeleaf-extras-java8time.version>2.1.0.RELEASE</thymeleaf-extras-java8time.version>
189189
<tomcat.version>8.5.34</tomcat.version>
190-
<undertow.version>1.4.25.Final</undertow.version>
190+
<undertow.version>1.4.26.Final</undertow.version>
191191
<unboundid-ldapsdk.version>3.2.1</unboundid-ldapsdk.version>
192192
<webjars-hal-browser.version>9f96c74</webjars-hal-browser.version>
193193
<webjars-locator.version>0.32-1</webjars-locator.version>

spring-boot/src/main/java/org/springframework/boot/context/embedded/undertow/UndertowEmbeddedServletContainerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ private void registerServletContainerInitializerToDriveServletContextInitializer
483483
DeploymentInfo deployment, ServletContextInitializer... initializers) {
484484
ServletContextInitializer[] mergedInitializers = mergeInitializers(initializers);
485485
Initializer initializer = new Initializer(mergedInitializers);
486-
deployment.addServletContainerInitalizer(new ServletContainerInitializerInfo(
486+
deployment.addServletContainerInitializer(new ServletContainerInitializerInfo(
487487
Initializer.class,
488488
new ImmediateInstanceFactory<ServletContainerInitializer>(initializer),
489489
NO_CLASSES));

0 commit comments

Comments
 (0)