calling import() in ModuleWorkerExecution.create hangs indefinately starting in deno v1.34.2 when using importText, importBinary, or importWasm
Workaround for now is to stay on Deno v1.34.1.
Looks to be a possible Deno regression, as the entire module appears to be loaded and init successfully, including fetched resources over rpc (importX calls are translated to fetches when not on Cloudflare), just never returns to the caller.
Will look to create a small repro case and send over to the Deno folks.
calling
import()
inModuleWorkerExecution.create
hangs indefinately starting in deno v1.34.2 when usingimportText
,importBinary
, orimportWasm
Workaround for now is to stay on Deno v1.34.1.
Looks to be a possible Deno regression, as the entire module appears to be loaded and init successfully, including fetched resources over rpc (
importX
calls are translated to fetches when not on Cloudflare), just never returns to the caller.Will look to create a small repro case and send over to the Deno folks.