mosermw commented on code in PR #9304:
URL: https://github.com/apache/nifi/pull/9304#discussion_r1775459998


##########
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_HEADERS_MAX_SIZE = new 
PropertyDescriptor.Builder()
+            .name("HTTP Headers Maximum Size")

Review Comment:
   Agreed!



##########
nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ListenHTTP.java:
##########
@@ -200,6 +200,13 @@ public AllowableValue getAllowableValue() {
         .addValidator(StandardValidators.REGULAR_EXPRESSION_VALIDATOR)
         .required(false)
         .build();
+    public static final PropertyDescriptor REQUEST_HEADERS_MAX_SIZE = new 
PropertyDescriptor.Builder()
+        .name("HTTP Headers Maximum Size")

Review Comment:
   Agreed!



-- 
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: issues-unsubscr...@nifi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to