Skip to content

Commit

Permalink
testability: bench test commands should have automated coverage usin…
Browse files Browse the repository at this point in the history
…g simulator #5562
  • Loading branch information
rusefillc committed Sep 13, 2023
1 parent 3140ce9 commit a9e4a8c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ public static void startSimulator() throws InterruptedException {
new Thread(() -> runSimulator(simulatorStarted), "simulator process").start();
simulatorStarted.await(1, TimeUnit.MINUTES);
log.info("Let's give it some time to start...");
// yes quite long delay is needed to GHA to be reliable even while we have a latch for simulator process console output
// technically we can do a loop waiting for port to open if one day we would start caring
Thread.sleep(35);
}
}

0 comments on commit a9e4a8c

Please sign in to comment.