From 09b12ec723abb4a186c97755d67162235d84390a Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 1 Feb 2022 15:42:19 -0800 Subject: [PATCH] Add additional, commented out Apache Geode configuration (in GemFire Properties). Edit Javadoc. --- .../geode/app/ApacheGeodeClientApplication.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apache-geode-extensions/src/test/java/org/springframework/geode/app/ApacheGeodeClientApplication.java b/apache-geode-extensions/src/test/java/org/springframework/geode/app/ApacheGeodeClientApplication.java index 06c3640c..6f653a03 100644 --- a/apache-geode-extensions/src/test/java/org/springframework/geode/app/ApacheGeodeClientApplication.java +++ b/apache-geode-extensions/src/test/java/org/springframework/geode/app/ApacheGeodeClientApplication.java @@ -32,6 +32,7 @@ import org.apache.geode.cache.client.ClientRegionShortcut; * @see java.util.Properties * @see org.apache.geode.cache.Region * @see org.apache.geode.cache.client.ClientCache + * @see org.apache.geode.cache.client.ClientCacheFactory * @since 1.3.0 */ @SuppressWarnings("unused") @@ -78,6 +79,9 @@ public class ApacheGeodeClientApplication implements Runnable { gemfireProperties.setProperty("name", APPLICATION_NAME); gemfireProperties.setProperty("log-level", GEMFIRE_LOG_LEVEL); + // See: https://issues.apache.org/jira/browse/GEODE-7891 + //gemfireProperties.setProperty("geode.disallow-internal-messages-without-credentials", Boolean.TRUE.toString()); + //gemfireProperties.setProperty("tombstone-gc-threshold", "100"); return gemfireProperties; }