Skip to content

Commit

Permalink
fix invalid transition
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed Jun 9, 2024
1 parent 84cf5a6 commit f191845
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ public void chill() {

@Override
public void complete() {
countdown.set(-1);
ViewAssembly.this.complete();
}

Expand All @@ -454,12 +455,14 @@ public void convened() {

@Override
public void failed() {
countdown.set(-1);
view.onFailure();
log.debug("Failed view assembly for: {} on: {}", nextViewId, params().member().getId());
}

@Override
public void finish() {
countdown.set(-1);
started.set(false);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@ public Transitions complete() {
return null;
}

@Override
public Transitions countdownCompleted() {
return null;
}

// Complete the configuration protocol
// The slate of the ViewAssembly now contains
// the SignedViewMembers of the next committee
Expand Down

0 comments on commit f191845

Please sign in to comment.