Skip to content

Commit

Permalink
Trace context sync master and test fix (#1151)
Browse files Browse the repository at this point in the history
  • Loading branch information
samukce authored and Adrian Cole committed May 4, 2020
1 parent 4ae7fdf commit c85f812
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion brave/src/main/java/brave/propagation/TraceContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ public final TraceContext build() {
String missing = "";
if (traceIdHigh == 0L && traceId == 0L) missing += " traceId";
if (spanId == 0L) missing += " spanId";
if (!"".equals(missing)) throw new IllegalArgumentException("Missing :" + missing);
if (!"".equals(missing)) throw new IllegalArgumentException("Missing:" + missing);
return new TraceContext(
flags, traceIdHigh, traceId, localRootId, parentId, spanId, ensureImmutable(extraList)
);
Expand Down
2 changes: 1 addition & 1 deletion propagation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>io.zipkin.brave</groupId>
<artifactId>brave-parent</artifactId>
<version>5.10.2-SNAPSHOT</version>
<version>5.10.3-SNAPSHOT</version>
</parent>

<artifactId>brave-propagation-parent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion propagation/w3c/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>io.zipkin.brave</groupId>
<artifactId>brave-propagation-parent</artifactId>
<version>5.10.2-SNAPSHOT</version>
<version>5.10.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit c85f812

Please sign in to comment.