You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the report. This looks like a bug to me. As far as I can tell, none of the options on UndertowOptions is intended for use as a socket option. This means that the server.undertow.options.socket.* properties are of no use as currently implemented.
UndertowWebServerFactoryCustomizer
can map properties from:server.undertow.options.server.*
server.undertow.options.socket.*
into:
builder.setSocketOption(...)
builder.setSocketOption(...)
but it does not support
org.xnio.Options
but onlyUndertowOptions
, see: https://github.com/spring-projects/spring-boot/blob/master/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/embedded/UndertowWebServerFactoryCustomizer.java#L141To use
builder.setSocketOption(...)
we need properties fromorg.xnio.Options
.The text was updated successfully, but these errors were encountered: