File tree Expand file tree Collapse file tree
go/consensus/cometbft/apps/scheduler Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -378,6 +378,7 @@ steps:
378378 - make build-helpers
379379 - export OASIS_STORAGE_PROTOCOL_SERVER_BINARY=$(realpath go/storage/mkvs/interop/mkvs-test-helpers)
380380 - .buildkite/rust/coverage.sh
381+ soft_fail : true
381382 retry :
382383 << : *retry_agent_failure
383384 plugins :
Original file line number Diff line number Diff line change 1+ go/consensus/cometbft/apps/scheduler: Skip key manager runtimes
Original file line number Diff line number Diff line change @@ -134,8 +134,15 @@ func electCommittee(
134134 )
135135
136136 // Only generic compute runtimes need to elect all the committees.
137- if ! rt .IsCompute () && kind != scheduler .KindComputeExecutor {
138- return nil
137+ switch isFeatureVersion242 {
138+ case false :
139+ if ! rt .IsCompute () && kind != scheduler .KindComputeExecutor {
140+ return nil
141+ }
142+ case true :
143+ if ! rt .IsCompute () || kind != scheduler .KindComputeExecutor {
144+ return nil
145+ }
139146 }
140147
141148 members , err := electCommitteeMembers (
You can’t perform that action at this time.
0 commit comments