Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Feb 19, 2024
1 parent a4cca9c commit 22800d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion unified-scheduler-logic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,10 @@ impl PageInner {
}

fn pop_blocked_next_readonly_task(&mut self) -> Option<(Task, RequestedUsage)> {
if matches!(self.blocked_next_task(), Some((_, RequestedUsage::Readonly))) {
if matches!(
self.blocked_next_task(),
Some((_, RequestedUsage::Readonly))
) {
self.pop_unblocked_next_task()
} else {
None
Expand Down

0 comments on commit 22800d3

Please sign in to comment.