Understanding Heroku server status 143

后端 未结 4 1922
南旧
南旧 2020-12-08 06:29

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

Example:

Process exited with status 143
相关标签:
4条回答
  • 2020-12-08 06:48

    Daily restarts is a regularly Heroku dynos lifecycle activity:

    Heroku automatic dyno restarts

    0 讨论(0)
  • 2020-12-08 06:55

    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...).

    0 讨论(0)
  • 2020-12-08 07:03

    Restart the dyno, which causes the dyno to receive SIGTERM. use this command

    heroku restart worker.1
    

    and then

    heroku logs
    
    0 讨论(0)
  • 2020-12-08 07:08

    It is an idle state when it does not receive any request for a while. When it receives a request it will start again.

    0 讨论(0)
提交回复
热议问题