Skip to content

Commit

Permalink
eventuate-tram#87: Build 151 failed. Fixed by incrementing timeout in…
Browse files Browse the repository at this point in the history
… snapshot tests.
  • Loading branch information
dartartem committed Apr 5, 2021
1 parent 907c044 commit d7ac0be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit d7ac0be

Please sign in to comment.