Rename the "executor" instrumentation to "executors" to match gradle … (#8451)
This commit is contained in:
parent
448b96142a
commit
7fb487a757
|
@ -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
|
Loading…
Reference in New Issue