Rename the "executor" instrumentation to "executors" to match gradle … (#8451)

This commit is contained in:
Mateusz Rzeszutek 2023-05-09 17:56:01 +02:00 committed by GitHub
parent 448b96142a
commit 7fb487a757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -13,9 +13,13 @@ import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
import java.util.List; import java.util.List;
@AutoService(InstrumentationModule.class) @AutoService(InstrumentationModule.class)
public class ExecutorInstrumentationModule extends InstrumentationModule { public class ExecutorsInstrumentationModule extends InstrumentationModule {
public ExecutorInstrumentationModule() {
super("executor"); public ExecutorsInstrumentationModule() {
super(
"executors",
// TODO: remove that after release 1.26.0
"executor");
} }
@Override @Override