Skip to content

Commit 39aa14c

Browse files
committed
fix build
1 parent a10d464 commit 39aa14c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cache/code_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ impl CodeCacheInner {
160160
if let Some(sender) = &mut *sender {
161161
let _ = sender.send(data);
162162
} else {
163-
let (tx, rx) = tokio::sync::mpsc::unbounded_channel();
163+
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel();
164164
let conn = self.conn.clone();
165165
let _ = deno_core::unsync::spawn(async move {
166166
while let Some((specifier, code_cache_type, source_hash, data)) =

0 commit comments

Comments
 (0)