Skip to content

Commit f29eed8

Browse files
committed
Reinstate merge of pull request #31713 from dreis2211
This reverts commit 8deef6c.
1 parent 62ec5c1 commit f29eed8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/client/RestTemplateExchangeTags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private static String ensureLeadingSlash(String url) {
8484

8585
/**
8686
* Creates a {@code status} {@code Tag} derived from the
87-
* {@link ClientHttpResponse#getRawStatusCode() status} of the given {@code response}.
87+
* {@link ClientHttpResponse#getStatusCode() status} of the given {@code response}.
8888
* @param response the response
8989
* @return the status tag
9090
*/
@@ -120,7 +120,7 @@ public static Tag clientName(HttpRequest request) {
120120

121121
/**
122122
* Creates an {@code outcome} {@code Tag} derived from the
123-
* {@link ClientHttpResponse#getRawStatusCode() status} of the given {@code response}.
123+
* {@link ClientHttpResponse#getStatusCode() status} of the given {@code response}.
124124
* @param response the response
125125
* @return the outcome tag
126126
* @since 2.2.0

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/reactive/client/WebClientExchangeTags.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public static Tag clientName(ClientRequest request) {
111111

112112
/**
113113
* Creates an {@code outcome} {@code Tag} derived from the
114-
* {@link ClientResponse#rawStatusCode() status} of the given {@code response}.
114+
* {@link ClientResponse#statusCode() status} of the given {@code response}.
115115
* @param response the response
116116
* @return the outcome tag
117117
* @since 2.2.0

0 commit comments

Comments
 (0)