Skip to content

Commit 2a9da21

Browse files
authored
Reimplemented renovate fixes and change testcontainers image (#1527)
1 parent 8ae2a4b commit 2a9da21

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dependencyManagement/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ val DEPENDENCY_BOMS = listOf(
1616
"org.junit:junit-bom:5.11.3",
1717
"io.grpc:grpc-bom:1.68.1",
1818
"io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${otelInstrumentationVersion}",
19-
"org.testcontainers:testcontainers-bom:1.20.1"
19+
"org.testcontainers:testcontainers-bom:1.20.2"
2020
)
2121

2222
val autoServiceVersion = "1.1.1"
@@ -64,7 +64,7 @@ val DEPENDENCIES = listOf(
6464
"org.junit-pioneer:junit-pioneer:1.9.1",
6565
"org.skyscreamer:jsonassert:1.5.3",
6666
"org.apache.kafka:kafka-clients:3.8.1",
67-
"org.testcontainers:kafka:1.20.1",
67+
"org.testcontainers:kafka:1.20.2",
6868
"com.lmax:disruptor:3.4.4",
6969
"org.jctools:jctools-core:4.0.5",
7070
"tools.profiler:async-profiler:3.0",

kafka-exporter/src/test/java/io/opentelemetry/contrib/kafka/KafkaSpanExporterIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@
3838
import org.junit.jupiter.api.Test;
3939
import org.junit.jupiter.api.TestInstance;
4040
import org.rnorth.ducttape.unreliables.Unreliables;
41-
import org.testcontainers.containers.KafkaContainer;
4241
import org.testcontainers.junit.jupiter.Testcontainers;
42+
import org.testcontainers.kafka.KafkaContainer;
4343
import org.testcontainers.utility.DockerImageName;
4444

4545
@Testcontainers(disabledWithoutDocker = true)
4646
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
4747
class KafkaSpanExporterIntegrationTest {
4848
private static final DockerImageName KAFKA_TEST_IMAGE =
49-
DockerImageName.parse("confluentinc/cp-kafka:6.2.1");
49+
DockerImageName.parse("apache/kafka:3.8.1");
5050
private static final String TOPIC = "span_topic";
5151
private KafkaContainer kafka;
5252
private KafkaConsumer<String, ExportTraceServiceRequest> consumer;

0 commit comments

Comments
 (0)