We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 192de10 commit 21155aeCopy full SHA for 21155ae
simulator/src/main/java/byzzbench/simulator/service/SimulatorService.java
@@ -162,7 +162,7 @@ public void start() {
162
long currentRound = minQueuedRound.orElse(maxDeliveredRound.orElse(0));
163
164
if (numEvents >= byzzBenchConfig.getScenario().getTermination().getMinEvents()
165
- || currentRound >= byzzBenchConfig.getScenario().getTermination().getMinRounds()) {
+ && currentRound >= byzzBenchConfig.getScenario().getTermination().getMinRounds()) {
166
log.info("Reached min # of events or rounds for this run, terminating. . .");
167
numMaxedOut++;
168
scenario.getSchedule().finalizeSchedule();
0 commit comments