Skip to content

Commit e4c9c32

Browse files
committed
fix(turbo-task-fs): watcher hanging on wasm
1 parent b2f409d commit e4c9c32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

turbopack/crates/turbo-tasks-fs/src/watcher.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,8 @@ impl DiskWatcher {
544544
}
545545
}
546546

547-
let _lock = fs_inner_arc.invalidation_lock.blocking_write();
547+
// FIXME: this will cause hanging on wasm now
548+
// let _lock = fs_inner_arc.invalidation_lock.blocking_write();
548549
{
549550
let mut invalidator_map = fs_inner_arc.invalidator_map.lock().unwrap();
550551

0 commit comments

Comments
 (0)