mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05: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);
|
||||
}
|
||||
|
||||
function handleAsyncMsgFromRust(opId, buf) {
|
||||
function handleAsyncMsgFromRust(buf) {
|
||||
const record = recordFromBuf(buf);
|
||||
const p = promiseMap.get(record[0]);
|
||||
promiseMap.delete(record[0]);
|
||||
|
|
Loading…
Reference in a new issue