marcus41495 commented on a change in pull request #5887:
URL: https://github.com/apache/nifi/pull/5887#discussion_r831779683



##########
File path: 
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/InvokeHTTP.java
##########
@@ -516,6 +519,15 @@
             )
             .build();
 
+    public static final PropertyDescriptor PROP_ENABLE_COOKIE_REDIRECTS = new 
PropertyDescriptor.Builder()
+            .name("enable-cookie-redirects")
+            .description("If true, when an HTTP server responds to a request 
with a redirect, the provided cookie will be copied to the following request.")
+            .displayName("Enable Cookie Redirects")
+            .required(true)
+            .defaultValue("false")
+            .allowableValues("true", "false")

Review comment:
       You make good points, thanks for your input @exceptionfactory! I went 
ahead and implemented the changes you suggested. Let me know if they look 
alright.




-- 
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]


Reply via email to