Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.17.0
-
Docker cluster 1.17.0
Description
New version of handlehttprequest can't set the value 'Need Authentication' in property 'Client Authentication' cause is code is overwrite with the 'Want Authentication' value status.
final StandardServerConnectorFactory serverConnectorFactory = new StandardServerConnectorFactory(server, port); final boolean needClientAuth = CLIENT_NEED.getValue().equals(clientAuthValue); serverConnectorFactory.setNeedClientAuth(needClientAuth); final boolean wantClientAuth = CLIENT_WANT.getValue().equals(clientAuthValue); serverConnectorFactory.setNeedClientAuth(wantClientAuth);
In last line, serverConnectorFactory.setNeedClientAuth(wantClientAuth); needs to be change to serverConnectorFactory.setWantClientAuth(wantClientAuth);
Regards
Attachments
Issue Links
- is caused by
-
NIFI-3869 Add HTTP/2 Support to HTTP Listening Processors
- Resolved
- links to