Skip to content

Commit ceb1e5d

Browse files
committed
Polish
See gh-32518
1 parent 8b4a20d commit ceb1e5d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

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

+3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@
3434
* @author Brian Clozel
3535
* @author Nishant Raut
3636
* @since 2.1.0
37+
* @deprecated since 3.0.0 for removal in 3.2.0 in favor of
38+
* {@link org.springframework.web.reactive.function.client.DefaultClientObservationConvention}
3739
*/
40+
@Deprecated(since = "3.0.0", forRemoval = true)
3841
public final class WebClientExchangeTags {
3942

4043
private static final String URI_TEMPLATE_ATTRIBUTE = WebClient.class.getName() + ".uriTemplate";

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

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
* @author Brian Clozel
4141
* @author Nishant Raut
4242
*/
43+
@SuppressWarnings({"deprecation", "removal"})
4344
class WebClientExchangeTagsTests {
4445

4546
private static final String URI_TEMPLATE_ATTRIBUTE = WebClient.class.getName() + ".uriTemplate";

0 commit comments

Comments
 (0)