lordgamez commented on code in PR #1745:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1745#discussion_r1532300544


##########
PROCESSORS.md:
##########
@@ -1358,7 +1358,7 @@ In the list below, the names of required properties 
appear in bold. Any other pr
 | send-message-body                               | true                     | 
true<br/>false                                                                  
     | DEPRECATED. Only kept for backwards compatibility, no functionality is 
included.                                                                       
                                                                                
                                                                         |
 | Send Message Body                               | true                     | 
true<br/>false                                                                  
     | If true, sends the HTTP message body on POST/PUT/PATCH requests 
(default). If false, suppresses the message body and content-type header for 
these requests.                                                                 
                                                                                
   |
 | Use Chunked Encoding                            | false                    | 
true<br/>false                                                                  
     | When POST'ing, PUT'ing or PATCH'ing content set this property to true in 
order to not pass the 'Content-length' header and instead send 
'Transfer-Encoding' with a value of 'chunked'. This will enable the data 
transfer mechanism which was introduced in HTTP 1.1 to pass data of unknown 
lengths in chunks. |
-| Disable Peer Verification                       | false                    | 
true<br/>false                                                                  
     | Disables peer verification for the SSL session                           
                                                                                
                                                                                
                                                                       |
+| Disable Peer Verification                       | false                    | 
true<br/>false                                                                  
     | DEPRECATED. Only kept for backwards compatibility, no functionality is 
included.                                                                       
                                                                                
                                                                         |

Review Comment:
   Makes sense, updated in 55a700da1079435db2a352da9e672c6fa5ce2501



##########
extensions/http-curl/processors/InvokeHTTP.h:
##########
@@ -150,7 +150,7 @@ class InvokeHTTP : public core::Processor {
       .withDefaultValue("false")
       .build();
   EXTENSIONAPI static constexpr auto DisablePeerVerification = 
core::PropertyDefinitionBuilder<>::createProperty("Disable Peer Verification")
-      .withDescription("Disables peer verification for the SSL session")
+      .withDescription("DEPRECATED. Only kept for backwards compatibility, no 
functionality is included.")

Review Comment:
   Updated in 55a700da1079435db2a352da9e672c6fa5ce2501



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