We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9e2bce commit 2113b7cCopy full SHA for 2113b7c
client/src/main/java/io/split/client/SplitFactoryImpl.java
@@ -614,10 +614,8 @@ private static SSLContext buildSSLContext(SplitClientConfig config) throws IOExc
614
_log.warn("Ignoring p12 mTLS config and switching to default context");
615
sslContext = SSLContexts.createSystemDefault();
616
} finally {
617
- try {
+ if (keystoreStream != null) {
618
keystoreStream.close();
619
- } catch (NullPointerException e) {
620
- _log.error("Exception caught while closing file stream handler: ", e);
621
}
622
623
} else {
0 commit comments