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
The constructors on UndertowServletWebServer are heavily overloaded and rather unwieldy. The addition of graceful shutdown support has added to the problem as it's introduced another argument on the constructor. Many of the arguments are passed in so that they can be used to create HttpHandler instances that wrap those from the DeplomentManager. It would be better if this logic was in the factory that creates the server rather than the server itself.
We have a similar, albeit smaller, problem with UndertowWebServer. It would be nice to get rid of the Closeable constructor argument.
The text was updated successfully, but these errors were encountered:
The constructors on
UndertowServletWebServer
are heavily overloaded and rather unwieldy. The addition of graceful shutdown support has added to the problem as it's introduced another argument on the constructor. Many of the arguments are passed in so that they can be used to createHttpHandler
instances that wrap those from theDeplomentManager
. It would be better if this logic was in the factory that creates the server rather than the server itself.We have a similar, albeit smaller, problem with
UndertowWebServer
. It would be nice to get rid of theCloseable
constructor argument.The text was updated successfully, but these errors were encountered: