We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Affects: 3.2.1
Jetty ConnectionLimit feature is introduced via
server.jetty.max-connections in #35899
server.jetty.max-connections
However, this ConnectionLimit is not working properly due to problem that introduced in this issue #30565
If Spring Boot decided to give first-class support for this, I think we need to find a proper solution.
As a shortcut from #30565, instead of supported prop, this works like a charm.
@Bean public JettyServerCustomizer connectorsConnectionLimit() { return server -> server.addBean(new ConnectionLimit(1, server.getConnectors())); }
Thanks
The text was updated successfully, but these errors were encountered:
Thanks, @okohub. Closing in favor of #39052.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Affects: 3.2.1
Jetty ConnectionLimit feature is introduced via
server.jetty.max-connections
in #35899However, this ConnectionLimit is not working properly due to problem that introduced in this issue #30565
If Spring Boot decided to give first-class support for this, I think we need to find a proper solution.
As a shortcut from #30565, instead of supported prop, this works like a charm.
Thanks
The text was updated successfully, but these errors were encountered: