Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2150#discussion_r146825541
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/InvokeHTTP.java
---
@@ -370,6 +374,14 @@
.allowableValues("true", "false")
.build();
+ public static final PropertyDescriptor PROP_USE_ETAG = new
PropertyDescriptor.Builder()
+ .name("use-etag")
+ .displayName("Use HTTP ETag")
+ .required(true)
--- End diff --
This needs a `description("")` call to set a description statement on the
property.
---