remove deprecated name "executor" for executors module (#9064)
Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
This commit is contained in:
parent
03664f2d6b
commit
b48c61cf3c
|
@ -8,7 +8,7 @@ dependencies {
|
||||||
testImplementation("com.google.protobuf:protobuf-java-util:3.23.4")
|
testImplementation("com.google.protobuf:protobuf-java-util:3.23.4")
|
||||||
testImplementation("com.squareup.okhttp3:okhttp:4.11.0")
|
testImplementation("com.squareup.okhttp3:okhttp:4.11.0")
|
||||||
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.0.0-alpha")
|
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")
|
testImplementation("ch.qos.logback:logback-classic:1.4.8")
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,10 +16,7 @@ import java.util.List;
|
||||||
public class ExecutorsInstrumentationModule extends InstrumentationModule {
|
public class ExecutorsInstrumentationModule extends InstrumentationModule {
|
||||||
|
|
||||||
public ExecutorsInstrumentationModule() {
|
public ExecutorsInstrumentationModule() {
|
||||||
super(
|
super("executors");
|
||||||
"executors",
|
|
||||||
// TODO: remove that after release 1.26.0
|
|
||||||
"executor");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue