remove deprecated name "executor" for executors module (#9064)

Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
This commit is contained in:
Gregor Zeitlinger 2023-08-07 11:51:51 +02:00 committed by GitHub
parent 03664f2d6b
commit b48c61cf3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -8,7 +8,7 @@ dependencies {
testImplementation("com.google.protobuf:protobuf-java-util:3.23.4")
testImplementation("com.squareup.okhttp3:okhttp:4.11.0")
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.0.0-alpha")
testImplementation("io.opentelemetry:opentelemetry-api:${versions.opentelemetry}")
testImplementation("io.opentelemetry:opentelemetry-api")
testImplementation("ch.qos.logback:logback-classic:1.4.8")
}

View File

@ -16,10 +16,7 @@ import java.util.List;
public class ExecutorsInstrumentationModule extends InstrumentationModule {
public ExecutorsInstrumentationModule() {
super(
"executors",
// TODO: remove that after release 1.26.0
"executor");
super("executors");
}
@Override