Adapt to (internal) API changes in Apache Geode 1.13.1.

These changes are unavoidable at the momment given Apache Geode hides critical functionality (e.g. SSL config) behind an (so-called) 'internal' API.
This commit is contained in:
John Blum
2021-01-12 18:39:36 -08:00
parent 904743deaa
commit a59b2097bc

View File

@@ -20,13 +20,10 @@ import java.util.Optional;
import org.apache.geode.cache.GemFireCache;
import org.apache.geode.distributed.internal.InternalDistributedSystem;
import org.apache.geode.internal.admin.SSLConfig;
import org.apache.geode.internal.net.SSLConfig;
import org.apache.geode.internal.net.SSLConfigurationFactory;
import org.apache.geode.internal.security.SecurableCommunicationChannel;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.context.annotation.Bean;
@@ -35,6 +32,9 @@ import org.springframework.context.annotation.Profile;
import org.springframework.data.gemfire.util.ArrayUtils;
import org.springframework.lang.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Debug {@link Configuration} for Apache Geode based Spring Boot Tests.
*