Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Understanding Heroku server status 143

I'm wondering about Heroku server status and can't find any documentation about this topic.

Example:

Process exited with status 143 

Can anyone explain this example? And where would I find resources for future reference?

like image 238
Tien Nguyen Avatar asked Apr 02 '13 15:04

Tien Nguyen


1 Answers

Exit code 143 means that your process was terminated by a SIGTERM. This is generally sent when you do any commands that require your dynos to restart (config:set, restart, scale down...).

like image 101
Eric Fode Avatar answered Sep 28 '22 06:09

Eric Fode