js-newb
js-newb

Reputation: 513

Terminal process get killed with code ELIFECYCLE errno: 137 when VS Code is open. Quitting VS Code resolves the issue?

I've only recently in the last two days begun encountering this issue.

When I attempt to build my Angular project, It's getting to this one point and failing with errors below.

The only way I can get it to run is to quit VS code and rerun the exact same command and it builds without issue.
Any ideas what may be causing this?

enter image description here

Upvotes: 0

Views: 1532

Answers (1)

torek
torek

Reputation: 487953

137 is 128 + 9. In some situations—and I'm guessing that this is one of them—this indicates that the process died with a signal 9. Signal 9 is, on macOS (and multiple other OSes), SIGKILL. This signal is sent by the "out of memory" killer.

This also explains why exiting VSCode fixes things: VSCode is a memory hog. Exiting it returns the memory to the system.

To fix this more permanently, either reduce the memory needs of your build and/or of VSCode, or add more memory to your system.

See also What killed my process and why?

Upvotes: 1

Related Questions