Skip to content

Commit

Permalink
NIFI-13985 Fixed typo causing Trust Store loading failures in Standar…
Browse files Browse the repository at this point in the history
…dSSLContextService (#9503)

Signed-off-by: David Handermann <[email protected]>
  • Loading branch information
markobean authored Nov 8, 2024
1 parent d20be80 commit 4554aaf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public SSLContext createContext() {
final StandardSslContextBuilder sslContextBuilder = new StandardSslContextBuilder().protocol(protocol);

final TrustManager trustManager;
final String trustStoreFile = getKeyStoreFile();
final String trustStoreFile = getTrustStoreFile();
if (trustStoreFile == null || trustStoreFile.isBlank()) {
getLogger().debug("Trust Store File not configured");
} else {
Expand Down

0 comments on commit 4554aaf

Please sign in to comment.