Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/boundless-cli/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ impl ProverConfig {
/// This method is intended to give a slightly nicer error message if Bento is not running,
/// expecially if they did not actually mean to use Bento.
pub async fn configure_proving_backend_with_health_check(&self) -> anyhow::Result<()> {
self.configure_proving_backend();

// No health check is implemented for default prover. If dev mode is set, then we are going
// to use the dev mode prover anyway, so don't run the health check.
if self.use_default_prover || self.skip_health_check || ProverOpts::default().dev_mode() {
Expand Down
Loading