From 6d85f482989097e0f029095d3e8c9a5a3b1b262e Mon Sep 17 00:00:00 2001 From: buildmaster Date: Mon, 12 Jul 2021 17:43:40 +0000 Subject: [PATCH] Bumping versions --- benchmarks/pom.xml | 2 +- pom.xml | 2 +- .../messaging/TraceFunctionAroundWrapperTests.java | 8 +++++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml index a32935783..126664a75 100644 --- a/benchmarks/pom.xml +++ b/benchmarks/pom.xml @@ -28,7 +28,7 @@ org.springframework.boot spring-boot-starter-parent - 2.4.7 + 2.6.0-SNAPSHOT diff --git a/pom.xml b/pom.xml index 0028323d3..709f42cc0 100644 --- a/pom.xml +++ b/pom.xml @@ -71,7 +71,7 @@ 3.1.4-SNAPSHOT 3.1.0-SNAPSHOT 3.1.0-SNAPSHOT - 2.3.2-SNAPSHOT + 2.3.3-SNAPSHOT 2.5.1 5.13.2 0.32.0 diff --git a/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java b/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java index 96da71089..df29fcc70 100644 --- a/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java +++ b/tests/common/src/main/java/org/springframework/cloud/sleuth/instrument/messaging/TraceFunctionAroundWrapperTests.java @@ -74,9 +74,11 @@ public abstract class TraceFunctionAroundWrapperTests { function.setSkipOutputConversion(true); Object result = function.get(); assertThat(result).isInstanceOf(Publisher.class); - /* TODO - * We'll need more assertions but for now this one will ensure that wrapper does not change the type of return value - * specifically for reactive cases where Flux became Message due to the current code in TraceFunctionAroundWrapper + /* + * TODO We'll need more assertions but for now this one will ensure that + * wrapper does not change the type of return value specifically for reactive + * cases where Flux became Message due to the current code in + * TraceFunctionAroundWrapper */ } }