You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#617 Allow arbitrary customization of client SslContext
SessionOption.TRUST_MANAGER_FACTORY is deprecated. Use SessionOption.SSL_CONTEXT_CUSTOMIZER instead. You can set a TrustManagerFactory with SslContextBuilder as follows:
privatestaticfinalClientFactoryclientFactory =
newAllInOneClientFactory(SessionOptions.of(
SessionOption.SSL_CONTEXT_CUSTOMIZER.newValue(
b -> b.trustManager(InsecureTrustManagerFactory.INSTANCE)),
...
Bug fixes
#620 The default blockingTaskExecutor is not single-threaded anymore.
#626 Fix a race condition in DeferredStreamMessage.subscribeToDelegate().