From b3c72314a4cdbad16562453ff659e1c76342943d Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 28 May 2018 22:01:59 -0700 Subject: [PATCH] Remove exclusion on SslAutonConfiguration class. --- .../cq/AutoConfiguredContinuousQueryIntegrationTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geode-spring-boot-starter/src/test/java/org/springframework/boot/data/geode/cq/AutoConfiguredContinuousQueryIntegrationTests.java b/geode-spring-boot-starter/src/test/java/org/springframework/boot/data/geode/cq/AutoConfiguredContinuousQueryIntegrationTests.java index 4bd459f1..1457a700 100644 --- a/geode-spring-boot-starter/src/test/java/org/springframework/boot/data/geode/cq/AutoConfiguredContinuousQueryIntegrationTests.java +++ b/geode-spring-boot-starter/src/test/java/org/springframework/boot/data/geode/cq/AutoConfiguredContinuousQueryIntegrationTests.java @@ -34,7 +34,6 @@ import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.boot.data.geode.autoconfigure.SslAutoConfiguration; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; @@ -60,6 +59,7 @@ import example.geode.query.cq.event.TemperatureReadingsContinuousQueriesHandler; * @see org.apache.geode.cache.GemFireCache * @see org.apache.geode.cache.Region * @see org.springframework.boot.autoconfigure.SpringBootApplication + * @see org.springframework.boot.data.geode.autoconfigure.ContinuousQueryAutoConfiguration * @see org.springframework.boot.test.context.SpringBootTest * @see org.springframework.context.annotation.AnnotationConfigApplicationContext * @see org.springframework.context.annotation.Bean @@ -109,7 +109,7 @@ public class AutoConfiguredContinuousQueryIntegrationTests extends ForkingClient assertThat(this.temperatureReadingsHandler.getFreezingTemperatures()).contains(16, -51); } - @SpringBootApplication(exclude = SslAutoConfiguration.class) + @SpringBootApplication @EnableLogging(logLevel = GEMFIRE_LOG_LEVEL) public static class GemFireClientConfiguration extends SubscriptionEnabledClientServerIntegrationTestsConfiguration {