From 2066820cf59eff2be45fed60a7d539f70ddef120 Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 13 May 2019 00:32:44 -0700 Subject: [PATCH] SGF-222 - Fixup test to ensure consistent configuration of the Apache Geode DistributedSystem between the Cache and Locator instances. --- .../config/annotation/LocatorApplicationIntegrationTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/org/springframework/data/gemfire/config/annotation/LocatorApplicationIntegrationTests.java b/src/test/java/org/springframework/data/gemfire/config/annotation/LocatorApplicationIntegrationTests.java index 6ab84705..dd57f698 100644 --- a/src/test/java/org/springframework/data/gemfire/config/annotation/LocatorApplicationIntegrationTests.java +++ b/src/test/java/org/springframework/data/gemfire/config/annotation/LocatorApplicationIntegrationTests.java @@ -82,6 +82,7 @@ public class LocatorApplicationIntegrationTests { .set("jmx-manager", distributedSystemProperties.getProperty("jmx-manager")) .set("locators", distributedSystemProperties.getProperty("locators")) .set("log-file", distributedSystemProperties.getProperty("log-file")) + .set("log-level", distributedSystemProperties.getProperty("log-level")) .create(); assertThat(peerCache).isNotNull();