本文介绍了了解Heroku服务器状态143的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道Heroku服务器状态,找不到有关此主题的任何文档。
I'm wondering about Heroku server status and can't find any documentation about this topic.
示例:
Process exited with status 143
任何人都可以解释这个例子?在哪里可以找到资源以备将来参考?
Can anyone explain this example? And where would I find resources for future reference?
推荐答案
退出代码143表示您的进程已被SIGTERM终止。这通常在执行任何需要重新启动的命令(config:set,restart,scale down ...)时发送。
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...).
这篇关于了解Heroku服务器状态143的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!