Skip to content
New issue

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

Inline ContextHandler.MAX_FORM_CONTENT_SIZE_KEY #763

Merged
merged 1 commit into from
May 9, 2024

Conversation

basil
Copy link
Member

@basil basil commented May 8, 2024

Jetty 10:

jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java
145:    public static final String MAX_FORM_CONTENT_SIZE_KEY = "org.eclipse.jetty.server.Request.maxFormContentSize";

Jetty 12:

jetty-core/jetty-server/src/main/java/org/eclipse/jetty/server/FormFields.java
42:    public static final String MAX_LENGTH_ATTRIBUTE = "org.eclipse.jetty.server.Request.maxFormContentSize";

As you can see, the string is the same, but now lives in FormFields.MAX_LENGTH_ATTRIBUTE rather than ContextHandler.MAX_FORM_CONTENT_SIZE_KEY.

To prepare ourselves for the transition, simplest just to inline the string so that we aren't depending on any particular calling convention.

Testing done

mvn clean install -DskipTests

@basil basil added the chore label May 8, 2024
@basil basil merged commit c6b69c7 into jenkinsci:master May 9, 2024
14 checks passed
@basil basil deleted the maxFormContentSize branch May 9, 2024 06:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants