Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Feb 19, 2024
1 parent 8b15a7b commit 2b00a70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unified-scheduler-logic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,8 @@ impl SchedulingStateMachine {
LockResult::Ok(PageUsage::Unused) => unreachable!(),
LockResult::Ok(new_usage) => {
page.usage = new_usage;
// Try to further schedule blocked transactions for parallelism in the case
// of readonly locks
// Try to further schedule blocked task for parallelism in the case of
// readonly usages
unblocked_task_from_page = if matches!(new_usage, PageUsage::Readonly(_)) {
page.pop_blocked_next_readonly_task()
} else {
Expand Down

0 comments on commit 2b00a70

Please sign in to comment.