Skip to content

Commit

Permalink
Make OrderingSender use circular buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
akoshelev committed Jun 13, 2024
1 parent 283753d commit 04d2c91
Show file tree
Hide file tree
Showing 8 changed files with 292 additions and 270 deletions.
5 changes: 4 additions & 1 deletion ipa-core/benches/oneshot/ipa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ async fn run(args: Args) -> Result<(), Error> {

let _prep_time = Instant::now();
let config = TestWorldConfig {
gateway_config: GatewayConfig::new(args.active()),
gateway_config: GatewayConfig {
active: args.active().try_into().unwrap(),
..Default::default()
},
initial_gate: Some(Gate::default().narrow(&IpaPrf)),
..TestWorldConfig::default()
};
Expand Down
Loading

0 comments on commit 04d2c91

Please sign in to comment.