Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#2896] improve(IT): Add e2e test case for verifying fileset schema level and kafka topic level #2937

Merged
merged 13 commits into from
Apr 19, 2024
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ public void startKafkaContainer() {
if (kafkaContainer == null) {
synchronized (ContainerSuite.class) {
if (kafkaContainer == null) {
KafkaContainer container = closer.register(KafkaContainer.builder().build());
KafkaContainer.Builder builder = KafkaContainer.builder().withNetwork(network);
KafkaContainer container = closer.register(builder.build());
try {
container.start();
} catch (Exception e) {
Expand Down
1 change: 1 addition & 0 deletions integration-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ tasks.test {
// Gravitino CI Docker image
environment("GRAVITINO_CI_HIVE_DOCKER_IMAGE", "datastrato/gravitino-ci-hive:0.1.10")
environment("GRAVITINO_CI_TRINO_DOCKER_IMAGE", "datastrato/gravitino-ci-trino:0.1.5")
environment("GRAVITINO_CI_KAFKA_DOCKER_IMAGE", "apache/kafka:3.7.0")

copy {
from("${project.rootDir}/dev/docker/trino/conf")
Expand Down
Loading
Loading