Mark Bean created NIFI-13985:
--------------------------------
Summary: StandardSSLContextService error for when keystore file is
not provided
Key: NIFI-13985
URL: https://issues.apache.org/jira/browse/NIFI-13985
Project: Apache NiFi
Issue Type: Bug
Affects Versions: 2.0.0
Reporter: Mark Bean
Assignee: Mark Bean
Currently, when the Keystore file is not provided in the
StandardSSLContextService configuration, a TrustManager not be created.
{{252 final TrustManager trustManager;}}
{{253 final String trustStoreFile = {*}getKeyStoreFile{*}();}}
{{254 if (trustStoreFile == null || trustStoreFile.isBlank()) {}}
{{255 getLogger().debug("Trust Store File not configured");}}
{{256 } else {}}
{{257 trustManager = createTrustManager();}}
{{258 sslContextBuilder.trustManager(trustManager);}}
{{259 }}}
Line 254 should be:
{{ final String trustStoreFile = {*}getTrustStoreFile{*}();}}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)