Skip to content

Commit be61306

Browse files
#9345 changes from review
Co-authored-by: Simone Bordet <[email protected]>
1 parent 940c92a commit be61306

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jetty-http/src/main/java/org/eclipse/jetty/http/MultiPartFormInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ public void startPart()
769769
reset();
770770
_numParts++;
771771
if (_maxParts >= 0 && _numParts > _maxParts)
772-
throw new IllegalStateException(String.format("Form with too many keys [%d > %d]", _numParts, _maxParts));
772+
throw new IllegalStateException(String.format("Form with too many parts [%d > %d]", _numParts, _maxParts));
773773
}
774774

775775
@Override

0 commit comments

Comments
 (0)