Fixes edge-case encoding bug (#391)

Sleuth doesn't create I64 binary annotations, but others might. This
version of zipkin fixes an encoding bug when someone logs a binary
annotation of type I64.
This commit is contained in:
Adrian Cole
2016-09-05 16:32:24 +08:00
committed by GitHub
parent 8a616d129a
commit 20d2144305
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
<properties>
<spring-cloud-netflix.version>1.2.0.BUILD-SNAPSHOT</spring-cloud-netflix.version>
<aspectj.version>1.8.4</aspectj.version>
<zipkin.version>1.8.1</zipkin.version>
<zipkin.version>1.8.2</zipkin.version>
</properties>
<dependencyManagement>
<dependencies>

View File

@@ -59,12 +59,12 @@
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin</artifactId>
<version>1.8.1</version>
<version>1.8.2</version>
</dependency>
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin-server</artifactId>
<version>1.8.1</version>
<version>1.8.2</version>
</dependency>
</dependencies>
</dependencyManagement>