Merge branch '2.0.x'

This commit is contained in:
Marcin Grzejszczak
2018-09-07 14:27:15 +02:00

View File

@@ -396,7 +396,7 @@ The following example shows how to propagate `x-vcap-request-id` the field as-is
Tracing.newBuilder().propagationFactory(
ExtraFieldPropagation.newFactoryBuilder(B3Propagation.FACTORY)
.addField("x-vcap-request-id")
.addPrefixedFields("baggage-", Arrays.asList("country-code", "user-id"))
.addPrefixedFields("x-baggage-", Arrays.asList("country-code", "user-id"))
.build()
);
```