Skip to content

Commit 7bddcee

Browse files
authored
Fix sequencing wait condition (#2114)
hubris#2104 accidentally waited for `Done` instead of `GroupcPg`, so the sequencer would never come up.
1 parent 3a70cc8 commit 7bddcee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drv/gimlet-seq-server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ impl<S: SpiServer> ServerImpl<S> {
828828
let a0sm = A0SmStatus::try_from(status[0]);
829829
ringbuf_entry!(Trace::A0Status(a0sm));
830830

831-
if a0sm == Ok(A0SmStatus::Done) {
831+
if a0sm == Ok(A0SmStatus::GroupcPg) {
832832
break;
833833
}
834834

0 commit comments

Comments
 (0)