From 21c17577b38734c080ed28c3693ff6e73c3ad033 Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 23 Mar 2020 10:50:35 -0700 Subject: [PATCH] DATAGEODE-313 - Remove 'security-auth-token-enabled-components' property declaration which is not present in Apache Geode 1.10. This Apache Geode property was added in 1.11. --- .../org/springframework/data/gemfire/GemFireProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java b/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java index a134fb1a..f8a89d63 100644 --- a/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java +++ b/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java @@ -103,7 +103,7 @@ public enum GemFireProperties { REDIS_PORT(ConfigurationProperties.REDIS_PORT, Integer.class, 0), REMOTE_LOCATORS(ConfigurationProperties.REMOTE_LOCATORS, String.class), REMOVE_UNRESPONSIVE_CLIENT(ConfigurationProperties.REMOVE_UNRESPONSIVE_CLIENT, Boolean.class, false), - SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS(ConfigurationProperties.SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS, String[].class), + //SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS(ConfigurationProperties.SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS, String[].class), SECURITY_CLIENT_AUTH_INIT(ConfigurationProperties.SECURITY_CLIENT_AUTH_INIT, String.class), SECURITY_LOG_FILE(ConfigurationProperties.SECURITY_LOG_FILE, File.class), SECURITY_LOG_LEVEL(ConfigurationProperties.SECURITY_LOG_LEVEL, String.class, "config"),