Skip to content

Commit

Permalink
Excavator: Upgrades Baseline to the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot committed Dec 10, 2019
1 parent fd6d895 commit 19dd094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ buildscript {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.netflix.nebula:nebula-publishing-plugin:14.1.1'
classpath 'com.palantir.baseline:gradle-baseline-java:2.37.0'
classpath 'com.palantir.baseline:gradle-baseline-java:2.41.0'
classpath 'com.palantir.gradle.gitversion:gradle-git-version:0.12.2'
classpath 'gradle.plugin.org.inferred:gradle-processors:3.1.0'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:1.13.1'
Expand Down
5 changes: 1 addition & 4 deletions tracing/src/test/java/com/palantir/tracing/TracersTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -528,10 +528,7 @@ public void testWrapCallableWithAlternateTraceId_traceStateInsideCallableUsesGiv
String traceIdBeforeConstruction = Tracer.getTraceId();
String traceIdToUse = "someTraceId";
Callable<String> wrappedCallable = Tracers.wrapWithAlternateTraceId(
traceIdToUse,
"operation",
Observability.UNDECIDED,
() -> Tracer.getTraceId());
traceIdToUse, "operation", Observability.UNDECIDED, Tracer::getTraceId);

String traceIdInsideCallable = wrappedCallable.call();

Expand Down

0 comments on commit 19dd094

Please sign in to comment.