From a27a770b6a2db10b0b13ee6d6517028b5736729c Mon Sep 17 00:00:00 2001 From: Michael Hirsch Date: Thu, 28 Jan 2016 10:35:26 +0100 Subject: [PATCH] removing the default value from the @Value annotation, seems like is not working overwriting the default value with profiles. Removing the default value, it is possible again to overwrite the default value again. --- .../java/org/eclipse/hawkbit/security/SecurityProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SecurityProperties.java b/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SecurityProperties.java index b9bf45fd0..e6742ebc8 100644 --- a/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SecurityProperties.java +++ b/hawkbit-security-core/src/main/java/org/eclipse/hawkbit/security/SecurityProperties.java @@ -31,7 +31,7 @@ public class SecurityProperties { @Value("${hawkbit.server.controller.security.rp.trustedIPs:#{null}}") private List rpTrustedIPs; - @Value("${hawkbit.server.controller.security.authentication.anonymous.enabled:false}") + @Value("${hawkbit.server.controller.security.authentication.anonymous.enabled}") private Boolean anonymousEnabled; public String getRpCnHeader() {