Bumping versions

This commit is contained in:
buildmaster
2021-07-12 17:43:40 +00:00
parent 602749a8d1
commit 6d85f48298
3 changed files with 7 additions and 5 deletions

View File

@@ -28,7 +28,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.7</version>
<version>2.6.0-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

View File

@@ -71,7 +71,7 @@
<spring-cloud-function.version>3.1.4-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-netflix.version>3.1.0-SNAPSHOT</spring-cloud-netflix.version>
<spring-cloud-openfeign.version>3.1.0-SNAPSHOT</spring-cloud-openfeign.version>
<spring-cloud-task.version>2.3.2-SNAPSHOT</spring-cloud-task.version>
<spring-cloud-task.version>2.3.3-SNAPSHOT</spring-cloud-task.version>
<spring-cloud-deployer.version>2.5.1</spring-cloud-deployer.version>
<brave.version>5.13.2</brave.version>
<opentracing.version>0.32.0</opentracing.version>

View File

@@ -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<Flux> 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<Flux> due to the current code in
* TraceFunctionAroundWrapper
*/
}
}