[
https://issues.apache.org/jira/browse/NIFI-13985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17899264#comment-17899264
]
Isha Lamboo commented on NIFI-13985:
------------------------------------
I have created NIFI-14025 to report the issue [~exceptionfactory]
> 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
> Fix For: 2.1.0
>
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> 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)