[
https://issues.apache.org/jira/browse/NIFI-13985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17896364#comment-17896364
]
David Handermann commented on NIFI-13985:
-----------------------------------------
Thanks for flagging this issue [~markbean]. If you are planning on putting
together a pull request, glad to collaborate on a review.
> 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
> Priority: Major
>
> 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)