Add isIndyReady marker to clickhouse (#14678)
This commit is contained in:
parent
b007f58d36
commit
8218e6395a
|
|
@ -35,4 +35,9 @@ public class ClickHouseClientV1InstrumentationModule extends InstrumentationModu
|
|||
public List<TypeInstrumentation> typeInstrumentations() {
|
||||
return singletonList(new ClickHouseClientV1Instrumentation());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isIndyReady() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,4 +25,9 @@ public class ClickHouseClientV2InstrumentationModule extends InstrumentationModu
|
|||
public List<TypeInstrumentation> typeInstrumentations() {
|
||||
return singletonList(new ClickHouseClientV2Instrumentation());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isIndyReady() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue