mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
fix deno_core_http_bench (#3698)
This commit is contained in:
parent
ad6635fab5
commit
d776ca8f2e
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ function recordFromBuf(buf) {
|
||||||
return new Int32Array(buf.buffer, buf.byteOffset, buf.byteLength / 4);
|
return new Int32Array(buf.buffer, buf.byteOffset, buf.byteLength / 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleAsyncMsgFromRust(opId, buf) {
|
function handleAsyncMsgFromRust(buf) {
|
||||||
const record = recordFromBuf(buf);
|
const record = recordFromBuf(buf);
|
||||||
const p = promiseMap.get(record[0]);
|
const p = promiseMap.get(record[0]);
|
||||||
promiseMap.delete(record[0]);
|
promiseMap.delete(record[0]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue