exceptionfactory commented on code in PR #9304:
URL: https://github.com/apache/nifi/pull/9304#discussion_r1777832185
##########
nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HandleHttpRequest.java:
##########
@@ -280,6 +280,13 @@ public class HandleHttpRequest extends AbstractProcessor {
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.expressionLanguageSupported(ExpressionLanguageScope.NONE)
.build();
+ public static final PropertyDescriptor REQUEST_HEADER_MAX_SIZE = new
PropertyDescriptor.Builder()
Review Comment:
Recommend moving this directly after the Maximum Threads property.
##########
nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HandleHttpRequest.java:
##########
@@ -332,7 +339,8 @@ public class HandleHttpRequest extends AbstractProcessor {
CONTAINER_QUEUE_SIZE,
MULTIPART_REQUEST_MAX_SIZE,
MULTIPART_READ_BUFFER_SIZE,
- PARAMETERS_TO_ATTRIBUTES
+ PARAMETERS_TO_ATTRIBUTES,
+ REQUEST_HEADER_MAX_SIZE
Review Comment:
For consistency, recommend moving this after the Maximum Threads property.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]