diff --git a/build.gradle b/build.gradle index fcc7bce8..dec78310 100644 --- a/build.gradle +++ b/build.gradle @@ -82,7 +82,7 @@ dockerCompose { mysqlbinloginfrastructuretextsearch { projectName = null useComposeFiles = ["docker-compose-snapshots-mysql-binlog.yml"] - startedServices = ["cdc-service"] + startedServices = ["cdc-service", "elasticsearch"] removeContainers = project.ext.removeContainers } diff --git a/snapshot-tests/src/test/java/io/eventuate/examples/tram/ordersandcustomers/snapshottests/SnapshotTest.java b/snapshot-tests/src/test/java/io/eventuate/examples/tram/ordersandcustomers/snapshottests/SnapshotTest.java index 539a07c4..80941ffc 100644 --- a/snapshot-tests/src/test/java/io/eventuate/examples/tram/ordersandcustomers/snapshottests/SnapshotTest.java +++ b/snapshot-tests/src/test/java/io/eventuate/examples/tram/ordersandcustomers/snapshottests/SnapshotTest.java @@ -101,7 +101,7 @@ private void execConsoleCommand(String... command) { processBuilder.inheritIO(); processBuilder .start() - .waitFor(1, TimeUnit.MINUTES); + .waitFor(5, TimeUnit.MINUTES); } catch (IOException | InterruptedException e) { throw new RuntimeException(e); }