diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-08-23 17:03:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 17:03:05 -0600 |
commit | b1ce2e41676ab5bc807a705b072986d9357fece5 (patch) | |
tree | 18d9b7796221d6236c9e993602c56c769345b6ce /cli/cache/cache_db.rs | |
parent | af1b794e53182dfe19cc675a107138263f08476c (diff) |
fix(ext/web): add stream tests to detect v8slice split bug (#20253)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/cache/cache_db.rs')
-rw-r--r-- | cli/cache/cache_db.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/cache/cache_db.rs b/cli/cache/cache_db.rs index cdab27f4c..9b591f58a 100644 --- a/cli/cache/cache_db.rs +++ b/cli/cache/cache_db.rs @@ -3,7 +3,7 @@ use deno_core::error::AnyError; use deno_core::parking_lot::Mutex; use deno_core::parking_lot::MutexGuard; -use deno_core::task::spawn_blocking; +use deno_core::unsync::spawn_blocking; use deno_runtime::deno_webstorage::rusqlite; use deno_runtime::deno_webstorage::rusqlite::Connection; use deno_runtime::deno_webstorage::rusqlite::OptionalExtension; |