Skip to content

Commit

Permalink
WIP: use lowest java-driver-core version that supports reactive
Browse files Browse the repository at this point in the history
  • Loading branch information
SimoneGiusso committed Nov 17, 2022
1 parent 8841346 commit 3bc4320
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ muzzle {
dependencies {
implementation(project(":instrumentation:cassandra:cassandra-4.0:javaagent"))

library("com.datastax.oss:java-driver-core:4.14.1")
library("com.datastax.oss:java-driver-core:4.4.0")

compileOnly("com.google.auto.value:auto-value-annotations")
annotationProcessor("com.google.auto.value:auto-value")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@AutoService(InstrumentationModule.class)
public class CassandraClientInstrumentationModule extends InstrumentationModule {
public CassandraClientInstrumentationModule() {
super("cassandra", "cassandra-4.14");
super("cassandra", "cassandra-4.4");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class CassandraSingletons {
static {
CassandraTelemetry telemetry =
CassandraTelemetry.builder(GlobalOpenTelemetry.get())
.setInstrumentationName("io.opentelemetry.cassandra-4.14")
.setInstrumentationName("io.opentelemetry.cassandra-4.4")
.setStatementSanitizationEnabled(CommonConfig.get().isStatementSanitizationEnabled())
.build();

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ include(":instrumentation:azure-core:azure-core-1.19:javaagent")
include(":instrumentation:azure-core:azure-core-1.19:library-instrumentation-shaded")
include(":instrumentation:cassandra:cassandra-3.0:javaagent")
include(":instrumentation:cassandra:cassandra-4.0:javaagent")
include(":instrumentation:cassandra:cassandra-4.14:javaagent")
include(":instrumentation:cassandra:cassandra-4.4:javaagent")
include(":instrumentation:cdi-testing")
include(":instrumentation:graphql-java-12.0:javaagent")
include(":instrumentation:graphql-java-12.0:library")
Expand Down

0 comments on commit 3bc4320

Please sign in to comment.