Skip to content

Commit 833e3ae

Browse files
committed
Merge branch '2.6.x' into 2.7.x
Closes gh-30887
2 parents c61cd77 + d10addf commit 833e3ae

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/reactive/AbstractWebFluxEndpointHandlerMapping.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,11 @@ Publisher<ResponseEntity<Object>> handle(ServerWebExchange exchange,
408408
return this.operation.handle(exchange, body);
409409
}
410410

411+
@Override
412+
public String toString() {
413+
return this.operation.toString();
414+
}
415+
411416
}
412417

413418
/**
@@ -426,6 +431,11 @@ Publisher<ResponseEntity<Object>> handle(ServerWebExchange exchange) {
426431
return this.operation.handle(exchange, null);
427432
}
428433

434+
@Override
435+
public String toString() {
436+
return this.operation.toString();
437+
}
438+
429439
}
430440

431441
private static class WebFluxEndpointHandlerMethod extends HandlerMethod {

0 commit comments

Comments
 (0)