Skip to content

Commit

Permalink
Remove schedulers, just hard-wire where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed Oct 24, 2023
1 parent 3ab46bd commit 74785ff
Show file tree
Hide file tree
Showing 29 changed files with 1,061 additions and 892 deletions.
2 changes: 1 addition & 1 deletion choam/src/main/java/com/salesforce/apollo/choam/CHOAM.java
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ public void start() {
return;
}
log.info("CHOAM startup, majority: {} on: {}", params.majority(), params.member().getId());
combine.start(params.producer().gossipDuration(), params.scheduler());
combine.start(params.producer().gossipDuration());
transitions.fsm().enterStartState();
transitions.start();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public void gather() {
proposals.put(params().member().getId(), proposed);

ds.setValue(join.toByteString());
coordinator.start(params().producer().gossipDuration(), params().scheduler());
coordinator.start(params().producer().gossipDuration());
controller.start();
}

Expand Down
Loading

0 comments on commit 74785ff

Please sign in to comment.