Browse Source

Revert "Merge pull request #31713 from dreis2211"

This reverts commit 590bfd8a5c, reversing
changes made to 993e1bf5f2.
pull/31798/head
Andy Wilkinson 3 years ago
parent
commit
8deef6cb42
  1. 4
      spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/client/RestTemplateExchangeTags.java
  2. 2
      spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/reactive/client/WebClientExchangeTags.java

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

@ -84,7 +84,7 @@ public final class RestTemplateExchangeTags { @@ -84,7 +84,7 @@ public final class RestTemplateExchangeTags {
/**
* Creates a {@code status} {@code Tag} derived from the
* {@link ClientHttpResponse#getStatusCode() status} of the given {@code response}.
* {@link ClientHttpResponse#getRawStatusCode() status} of the given {@code response}.
* @param response the response
* @return the status tag
*/
@ -120,7 +120,7 @@ public final class RestTemplateExchangeTags { @@ -120,7 +120,7 @@ public final class RestTemplateExchangeTags {
/**
* Creates an {@code outcome} {@code Tag} derived from the
* {@link ClientHttpResponse#getStatusCode() status} of the given {@code response}.
* {@link ClientHttpResponse#getRawStatusCode() status} of the given {@code response}.
* @param response the response
* @return the outcome tag
* @since 2.2.0

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

@ -111,7 +111,7 @@ public final class WebClientExchangeTags { @@ -111,7 +111,7 @@ public final class WebClientExchangeTags {
/**
* Creates an {@code outcome} {@code Tag} derived from the
* {@link ClientResponse#statusCode() status} of the given {@code response}.
* {@link ClientResponse#rawStatusCode() status} of the given {@code response}.
* @param response the response
* @return the outcome tag
* @since 2.2.0

Loading…
Cancel
Save