You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jg...@apache.org on 2022/08/04 18:18:28 UTC

[nifi] branch main updated: NIFI-10318 Corrected HandleHttpRequest TLS client authentication

This is an automated email from the ASF dual-hosted git repository.

jgresock pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 2d73fd5631 NIFI-10318 Corrected HandleHttpRequest TLS client authentication
2d73fd5631 is described below

commit 2d73fd5631eb3a1eef00f9640680418abe18638a
Author: exceptionfactory <ex...@apache.org>
AuthorDate: Thu Aug 4 10:41:17 2022 -0500

    NIFI-10318 Corrected HandleHttpRequest TLS client authentication
    
    - Corrected setting of wantClientAuth instead of needClientAuth based on Client Authentication configuration
    
    Signed-off-by: Joe Gresock <jg...@gmail.com>
    
    This closes #6271.
---
 .../java/org/apache/nifi/processors/standard/HandleHttpRequest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HandleHttpRequest.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HandleHttpRequest.java
index 7598e39845..b6dea590a3 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HandleHttpRequest.java
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HandleHttpRequest.java
@@ -368,7 +368,7 @@ public class HandleHttpRequest extends AbstractProcessor {
         final boolean needClientAuth = CLIENT_NEED.getValue().equals(clientAuthValue);
         serverConnectorFactory.setNeedClientAuth(needClientAuth);
         final boolean wantClientAuth = CLIENT_WANT.getValue().equals(clientAuthValue);
-        serverConnectorFactory.setNeedClientAuth(wantClientAuth);
+        serverConnectorFactory.setWantClientAuth(wantClientAuth);
         final SSLContext sslContext = sslService == null ? null : sslService.createContext();
         serverConnectorFactory.setSslContext(sslContext);
         final HttpProtocolStrategy httpProtocolStrategy = HttpProtocolStrategy.valueOf(context.getProperty(HTTP_PROTOCOL_STRATEGY).getValue());