From 9ece626072c3f3be541a670c23abcb717711f10c Mon Sep 17 00:00:00 2001 From: tokoko Date: Mon, 22 Apr 2024 19:33:23 +0000 Subject: [PATCH] make local compose mode default Signed-off-by: tokoko --- .../src/test/java/feast/serving/it/ServingEnvironment.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/java/serving/src/test/java/feast/serving/it/ServingEnvironment.java b/java/serving/src/test/java/feast/serving/it/ServingEnvironment.java index 5489203856..356524399a 100644 --- a/java/serving/src/test/java/feast/serving/it/ServingEnvironment.java +++ b/java/serving/src/test/java/feast/serving/it/ServingEnvironment.java @@ -62,11 +62,8 @@ static void globalSetup() { .withExposedService("redis", 6379) .withExposedService( "feast", 8080, Wait.forListeningPort().withStartupTimeout(Duration.ofSeconds(180))) - .withTailChildContainers(true); - - if (System.getenv("FEAST_TESTCONTAINERS_LOCAL_COMPOSE") != null) { - environment = environment.withLocalCompose(true); - } + .withTailChildContainers(true) + .withLocalCompose(true); environment.start(); }