diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/reactive/AbstractWebFluxEndpointHandlerMapping.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/reactive/AbstractWebFluxEndpointHandlerMapping.java index 005562564fd3..3975d3419c25 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/reactive/AbstractWebFluxEndpointHandlerMapping.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/reactive/AbstractWebFluxEndpointHandlerMapping.java @@ -408,6 +408,11 @@ Publisher> handle(ServerWebExchange exchange, return this.operation.handle(exchange, body); } + @Override + public String toString() { + return this.operation.toString(); + } + } /** @@ -426,6 +431,11 @@ Publisher> handle(ServerWebExchange exchange) { return this.operation.handle(exchange, null); } + @Override + public String toString() { + return this.operation.toString(); + } + } private static class WebFluxEndpointHandlerMethod extends HandlerMethod {