Merge branch '1.3.x'

This commit is contained in:
Marcin Grzejszczak
2017-12-18 16:56:30 +01:00
3 changed files with 4 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ public class ZipkinTests extends AbstractIntegrationTest {
}
List<String> traceIdsNotFoundInZipkin(List<Span> spans, long traceId) {
String traceIdString = Long.toHexString(traceId);
String traceIdString = org.springframework.cloud.sleuth.Span.idToHex(traceId);
Optional<String> traceIds = spans.stream()
.map(Span::traceId)
.filter(traceIdString::equals)