Skip to content

Commit

Permalink
switch default to loop
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniupop committed Oct 17, 2024
1 parent 14cf032 commit 46703d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fhevm-engine/executor/src/dfg/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl<'a> Scheduler<'a> {
"FINE_GRAIN" => self.schedule_fine_grain().await,
unhandled => panic!("Scheduling strategy {:?} does not exist", unhandled),
},
_ => self.schedule_fine_grain().await,
_ => self.schedule_component_loop().await,
}
}

Expand Down

0 comments on commit 46703d9

Please sign in to comment.