Reimplemented renovate fixes and change testcontainers image (#1527)
This commit is contained in:
parent
8ae2a4bc33
commit
2a9da21970
|
|
@ -16,7 +16,7 @@ val DEPENDENCY_BOMS = listOf(
|
|||
"org.junit:junit-bom:5.11.3",
|
||||
"io.grpc:grpc-bom:1.68.1",
|
||||
"io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${otelInstrumentationVersion}",
|
||||
"org.testcontainers:testcontainers-bom:1.20.1"
|
||||
"org.testcontainers:testcontainers-bom:1.20.2"
|
||||
)
|
||||
|
||||
val autoServiceVersion = "1.1.1"
|
||||
|
|
@ -64,7 +64,7 @@ val DEPENDENCIES = listOf(
|
|||
"org.junit-pioneer:junit-pioneer:1.9.1",
|
||||
"org.skyscreamer:jsonassert:1.5.3",
|
||||
"org.apache.kafka:kafka-clients:3.8.1",
|
||||
"org.testcontainers:kafka:1.20.1",
|
||||
"org.testcontainers:kafka:1.20.2",
|
||||
"com.lmax:disruptor:3.4.4",
|
||||
"org.jctools:jctools-core:4.0.5",
|
||||
"tools.profiler:async-profiler:3.0",
|
||||
|
|
|
|||
|
|
@ -38,15 +38,15 @@ import org.junit.jupiter.api.BeforeAll;
|
|||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.TestInstance;
|
||||
import org.rnorth.ducttape.unreliables.Unreliables;
|
||||
import org.testcontainers.containers.KafkaContainer;
|
||||
import org.testcontainers.junit.jupiter.Testcontainers;
|
||||
import org.testcontainers.kafka.KafkaContainer;
|
||||
import org.testcontainers.utility.DockerImageName;
|
||||
|
||||
@Testcontainers(disabledWithoutDocker = true)
|
||||
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
|
||||
class KafkaSpanExporterIntegrationTest {
|
||||
private static final DockerImageName KAFKA_TEST_IMAGE =
|
||||
DockerImageName.parse("confluentinc/cp-kafka:6.2.1");
|
||||
DockerImageName.parse("apache/kafka:3.8.1");
|
||||
private static final String TOPIC = "span_topic";
|
||||
private KafkaContainer kafka;
|
||||
private KafkaConsumer<String, ExportTraceServiceRequest> consumer;
|
||||
|
|
|
|||
Loading…
Reference in New Issue