Bumping versions

This commit is contained in:
buildmaster
2019-01-03 17:29:51 +00:00
parent 3dfc4b0be2
commit 26dc5be7f8
2 changed files with 2 additions and 3 deletions

View File

@@ -123,7 +123,7 @@ That means that, if there were two spans sent to Zipkin with Server Received and
Why is there a difference between the seven and four spans in this case?
* Two spans come from the `http:/start` span. It has the Server Received (`sr`) and Server Sent (`ss`) annotations.
* One span comes from the `http:/start` span. It has the Server Received (`sr`) and Server Sent (`ss`) annotations.
* Two spans come from the RPC call from `service1` to `service2` to the `http:/foo` endpoint.
The Client Sent (`cs`) and Client Received (`cr`) events took place on the `service1` side.
Server Received (`sr`) and Server Sent (`ss`) events took place on the `service2` side.
@@ -344,7 +344,6 @@ The following example shows setting baggage on a span:
Span initialSpan = this.tracer.nextSpan().name("span").start();
ExtraFieldPropagation.set(initialSpan.context(), "foo", "bar");
ExtraFieldPropagation.set(initialSpan.context(), "UPPER_CASE", "someValue");
}
----
===== Baggage versus Span Tags

View File

@@ -33,7 +33,7 @@
<sonar.skip>true</sonar.skip>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<spring-boot.version>2.1.0.RELEASE</spring-boot.version>
<spring-boot.version>2.1.1.RELEASE</spring-boot.version>
<brave.version>5.4.3</brave.version>
</properties>