Skip to content

Commit

Permalink
make local compose mode default
Browse files Browse the repository at this point in the history
Signed-off-by: tokoko <[email protected]>
  • Loading branch information
tokoko committed Apr 22, 2024
1 parent a4807a2 commit 9ece626
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 9ece626

Please sign in to comment.