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
Limits in 3.x (in io.helidon.webserver.SocketConfiguration.Builder):
io.helidon.webserver.SocketConfiguration.Builder
private int maxHeaderSize = 16384; private int maxInitialLineLength = 4096;
in 4.x, we have the limits set to (in io.helidon.webserver.http1.Http1ConfigBlueprint):
io.helidon.webserver.http1.Http1ConfigBlueprint
@Option.DefaultInt(16384) // correct int maxHeadersSize(); @Option.DefaultInt(2048) // should be 4096 int maxPrologueLength();
Other defaults should be checked as well and aligned where the semantics is the same.
The text was updated successfully, but these errors were encountered:
Update max-prologue-length from 2048 to 4096 to align with 3.x
21c63dd
Fixes helidon-io#9002
2978ebb
Update max-prologue-length from 2048 to 4096 to align with 3.x (helid…
17f4bac
…on-io#9007) Fixes helidon-io#9002
Update max-prologue-length from 2048 to 4096 to align with 3.x (#9007) (
a7790f0
#9010) Fixes #9002 Co-authored-by: Romain Grecourt <romain.grecourt@oracle.com>
romain-grecourt
Successfully merging a pull request may close this issue.
Limits in 3.x (in
io.helidon.webserver.SocketConfiguration.Builder
):in 4.x, we have the limits set to (in
io.helidon.webserver.http1.Http1ConfigBlueprint
):Other defaults should be checked as well and aligned where the semantics is the same.
The text was updated successfully, but these errors were encountered: