This commit is contained in:
Dave Syer
2015-08-14 11:07:21 +01:00
parent c7a2e9039d
commit a964a2840a

View File

@@ -67,12 +67,12 @@ public class ConfigClientAutoConfiguration {
@ConfigurationProperties("health.config")
public static class Health {
/**
* Flag to inidicate that the config server health indicator should be installed.
* Flag to indicate that the config server health indicator should be installed.
*/
boolean enabled;
public boolean isEnabled() {
return enabled;
return this.enabled;
}
public void setEnabled(boolean enabled) {