diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-08 10:13:13 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-08 15:13:13 +0000 |
| commit | 88b5fd90880b78498d0bbbdec6342b3db5887ef1 (patch) | |
| tree | f3c0e4b99d3253c30c9a6f9625c7ac926d0b83c9 /runtime | |
| parent | 72fe9bb47005e720444e65a66e91559287137780 (diff) | |
fix: attempt to only allow one deno process to update the node_modules folder at a time (#18058)
This is implemented in such a way that it should still allow processes
to go through when a file lock wasn't properly cleaned up and the OS
hasn't released it yet (but with a 200ms-ish delay).
Closes #18039
Diffstat (limited to 'runtime')
| -rw-r--r-- | runtime/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 112156203..0ba8f8d3a 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -89,7 +89,7 @@ atty.workspace = true dlopen.workspace = true encoding_rs.workspace = true filetime = "0.2.16" -fs3 = "0.5.0" +fs3.workspace = true http.workspace = true hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] } libc.workspace = true |
