From b67dd8430e2c5d6ce7aa95ac521b878786d523fd Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 12 Aug 2020 13:41:11 -0700 Subject: [PATCH] Remove 'spring.data.gemfire.management.use-http' property configuration and JVM argument for Boot client. The 'spring.data.gemfire.management.use-http' property was set in application.properties. --- .../boot/actuator/spring-geode-samples-boot-actuator.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle b/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle index c55f26a6..fcd5c375 100644 --- a/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle +++ b/spring-geode-samples/boot/actuator/spring-geode-samples-boot-actuator.gradle @@ -31,5 +31,5 @@ bootJar { bootRun { main = 'example.app.temp.geode.client.BootGeodeClientApplication' - args "--spring.profiles.active=client", "--spring.data.gemfire.management.use-http=false" + args "--spring.profiles.active=client" }