Bumping versions

This commit is contained in:
buildmaster
2019-08-17 05:28:06 +00:00
parent 289ec4755e
commit aa1d0830ba
2 changed files with 4 additions and 3 deletions

View File

@@ -63,7 +63,8 @@ public class SleuthProperties {
private List<String> propagationKeys = new ArrayList<>();
/**
* Same as {@link #propagationKeys} except that this field is not propagated to remote services.
* Same as {@link #propagationKeys} except that this field is not propagated to remote
* services.
*
* @see brave.propagation.ExtraFieldPropagation.FactoryBuilder#addRedactedField(String)
*/
@@ -116,4 +117,5 @@ public class SleuthProperties {
public void setLocalKeys(List<String> localKeys) {
this.localKeys = localKeys;
}
}

View File

@@ -82,8 +82,7 @@ public class Slf4JSpanLoggerTest {
ExtraFieldPropagation.set(this.span.context(), "my-baggage", "my-value");
ExtraFieldPropagation.set(this.span.context(), "my-propagation",
"my-propagation-value");
ExtraFieldPropagation.set(this.span.context(), "my-local",
"my-local-value");
ExtraFieldPropagation.set(this.span.context(), "my-local", "my-local-value");
Scope scope = this.slf4jScopeDecorator.decorateScope(this.span.context(), () -> {
});