Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add
catch
blocks to prevent unhandled rejections (#842)
Promises without rejection handlers, i.e. `.catch` or `try catch`, will throw "unhandled rejection" errors, which bubble up to the worker thread causing it to exit. This PR adds handlers to the various `simultaneousPromises` triggered within the Executor, to avoid the described.
- Loading branch information