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 21d43be commit d9e2bceCopy full SHA for d9e2bce
client/src/main/java/io/split/client/SplitFactoryImpl.java
@@ -614,7 +614,11 @@ 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
- keystoreStream.close();
+ try {
618
+ keystoreStream.close();
619
+ } catch (NullPointerException e) {
620
+ _log.error("Exception caught while closing file stream handler: ", e);
621
+ }
622
}
623
} else {
624
0 commit comments