exceptionfactory commented on a change in pull request #4804:
URL: https://github.com/apache/nifi/pull/4804#discussion_r569690686
##########
File path:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/InvokeHTTP.java
##########
@@ -474,6 +475,16 @@
.allowableValues("true", "false")
.build();
+ public static final PropertyDescriptor SUPPORT_HTTP2_PROTOCOL = new
PropertyDescriptor.Builder()
+ .name("support-http2")
+ .description("Determines whether or not to support the HTTP 2
protocol version.")
+ .displayName("Support HTTP 2")
+ .required(true)
+ .defaultValue("True")
+ .allowableValues("True", "False")
Review comment:
Thanks for the reply, it looks like this processor has both sets of
options, so with that background, the current approach works.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]