Skip to content

Commit

Permalink
[Turbopack] fix bug where task was not recomputed when stale (#72509)
Browse files Browse the repository at this point in the history
### What?

typo that took me long to find.

We want to check stale flag again when the task lock is acquired again
  • Loading branch information
sokra authored Nov 12, 2024
1 parent 1140e07 commit d81a9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbopack/crates/turbo-tasks-backend/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {
let InProgressState::InProgress {
done_event,
once_task: _,
stale: _,
stale,
session_dependent,
} = in_progress
else {
Expand Down

0 comments on commit d81a9f7

Please sign in to comment.