Skip to content

Commit

Permalink
Merge branch '2.6.x' into 2.7.x
Browse files Browse the repository at this point in the history
Closes gh-30887
  • Loading branch information
wilkinsona committed May 6, 2022
2 parents c61cd77 + d10addf commit 833e3ae
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -408,6 +408,11 @@ Publisher<ResponseEntity<Object>> handle(ServerWebExchange exchange,
return this.operation.handle(exchange, body);
}

@Override
public String toString() {
return this.operation.toString();
}

}

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

@Override
public String toString() {
return this.operation.toString();
}

}

private static class WebFluxEndpointHandlerMethod extends HandlerMethod {
Expand Down

0 comments on commit 833e3ae

Please sign in to comment.