Deno.core.runMicroTasks() is not supported in this environment

Hello! I recently pushed changes to an edge function and I've started to get three errors logged to the console with every invocation, and I'm not sure what to make of the errors. The edge function still does the work that it's supposed to do; it just has these three errors logged every time. I'll note that the changes I deployed , after which the errors started to occur, did not involve changes with any of my async handling. Here are the errors. After the edge function boots, I get the following two errors: "module "/bufferutil@4.0.9/deno/package.json" not found" "module "/utf-8-validate@5.0.10/deno/package.json" not found" Then, my edge function executes / logs normally. About one minute after my edge function completes I get one more error: "event loop error: Error: Deno.core.runMicrotasks() is not supported in this environment at core.runMicrotasks (https://deno.land/std@0.177.1/node/_core.ts:23:15) at processTicksAndRejections (https://deno.land/std@0.177.1/node/_next_tick.ts:50:14) at https://deno.land/std@0.177.1/node/process.ts:288:13 at innerInvokeEventListeners (ext:deno_web/02_event.js:754:7) at invokeEventListeners (ext:deno_web/02_event.js:801:5) at dispatch (ext:deno_web/02_event.js:658:9) at dispatchEvent (ext:deno_web/02_event.js:1043:12) at dispatchBeforeUnloadEvent (ext:sb_core_main_js/js/bootstrap.js:421:14)" Is anyone able to help me make sense of these errors and hopefully resolve them? Thanks so much! Alex Naughton
1 Reply
jumski
jumski8mo ago
This seems like something internal, could you try upgrading the CLI and restarting the local app?

Did you find this page helpful?