Skip to content

v0.7.4

Choose a tag to compare

@KallynGowdy KallynGowdy released this 10 Sep 04:23
· 77 commits to master since this release
58b9267

Changes:

  • Fixed to force the Deno subprocess to close when terminating the worker.
    • Forcing the process to be killed seems to be the most reasonable in the case that we're treating these like headless browser tabs.
    • When we try to gracefully kill the process, Deno might ignore it if it has things like infinite loops or open handles.
    • On Linux/Unix, this means sending a SIGKILL signal to the Deno subprocess.
    • On Windows, this means using taskkill with the /T and /F options.