Fix build (#824)

This commit is contained in:
Trask Stalnaker 2020-07-28 16:49:46 -07:00 committed by GitHub
parent fbfa062694
commit d107fe5016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 7 deletions

View File

@ -91,6 +91,11 @@ public class DelegatingSpan implements Span {
delegate.setStatus(status);
}
@Override
public void recordException(Throwable throwable) {
delegate.recordException(throwable);
}
@Override
public void updateName(final String name) {
delegate.updateName(name);

View File

@ -33,6 +33,9 @@ dependencies {
compileOnly deps.opentelemetryJaeger
compileOnly deps.opentelemetryOtlp
compileOnly deps.opentelemetryZipkin
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: versions.springboot
testImplementation deps.opentelemetrySdk
}
test {