Skip to content

Commit

Permalink
Merge pull request #23 from taikoxyz/disable-testing-mode
Browse files Browse the repository at this point in the history
go into a recoverable mode when there's a db issue
  • Loading branch information
Brechtpd authored Jan 30, 2025
2 parents cc414f8 + 992c737 commit 5323d56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/rbuilder/src/building/builders/ordering_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ pub fn run_ordering_builder<DB: Database + Clone + 'static>(
}
Err(err) => {
error!(?err, "Error consuming next order batch");
continue;
//continue;
break;
}
}

Expand Down

0 comments on commit 5323d56

Please sign in to comment.