Add isIndyReady marker to clickhouse (#14678)

This commit is contained in:
Jay DeLuca 2025-09-16 13:24:49 -04:00 committed by GitHub
parent b007f58d36
commit 8218e6395a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View File

@ -35,4 +35,9 @@ public class ClickHouseClientV1InstrumentationModule extends InstrumentationModu
public List<TypeInstrumentation> typeInstrumentations() { public List<TypeInstrumentation> typeInstrumentations() {
return singletonList(new ClickHouseClientV1Instrumentation()); return singletonList(new ClickHouseClientV1Instrumentation());
} }
@Override
public boolean isIndyReady() {
return true;
}
} }

View File

@ -25,4 +25,9 @@ public class ClickHouseClientV2InstrumentationModule extends InstrumentationModu
public List<TypeInstrumentation> typeInstrumentations() { public List<TypeInstrumentation> typeInstrumentations() {
return singletonList(new ClickHouseClientV2Instrumentation()); return singletonList(new ClickHouseClientV2Instrumentation());
} }
@Override
public boolean isIndyReady() {
return true;
}
} }