From 838e6cdbbbe151cdbefebb2908ffee96caa6968b Mon Sep 17 00:00:00 2001 From: Miguel Gomes Date: Sun, 1 Jul 2018 01:18:55 +0100 Subject: [PATCH] Improve description of Endpoint exclude See gh-13619 --- .../autoconfigure/endpoint/web/WebEndpointProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointProperties.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointProperties.java index ee20af6e207..ff8ba623b05 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointProperties.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/WebEndpointProperties.java @@ -81,7 +81,7 @@ public class WebEndpointProperties { private Set include = new LinkedHashSet<>(); /** - * Endpoint IDs that should be excluded. + * Endpoint IDs that should be excluded or '*' for all. */ private Set exclude = new LinkedHashSet<>();