我按照 heroku 的说明仔细部署了 Sinatra 应用程序,但仍然出现问题。如果这有什么不同,我正在使用 sinatra-base 和 sinatra-partial。我在 gemfile 和 myapp.rb 中声明了所有的 gem
这是我在heroku日志上看到的
2013-06-11T05:09:28.982664+00:00 app[web.1]: from myapp.rb:49:in `<class:MyApp>'
2013-06-11T05:09:29.148291+00:00 app[web.1]: [2013-06-11 05:09:29] INFO WEBrick 1.3.1
2013-06-11T05:09:29.148613+00:00 app[web.1]: == Sinatra/1.4.0 has taken the stage on 4567 for production with backup from WEBrick
2013-06-11T05:09:29.148759+00:00 app[web.1]: [2013-06-11 05:09:29] INFO WEBrick::HTTPServer#start: pid=2 port=4567
2013-06-11T05:09:29.148291+00:00 app[web.1]: [2013-06-11 05:09:29] INFO ruby 1.9.2 (2011-07-09) [x86_64-linux]
2013-06-11T05:10:26.570140+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2013-06-11T05:10:26.570414+00:00 heroku[web.1]: Stopping process with SIGKILL
2013-06-11T05:10:28.018692+00:00 heroku[web.1]: Process exited with status 137
2013-06-11T05:10:28.033080+00:00 heroku[web.1]: State changed from starting to crashed
在对错误进行了更多研究之后Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
,这可能是因为 gems 需要很长时间才能加载。但是,我只使用这些宝石,所以我不知道它为什么会超时。在本地,启动我的应用程序大约需要 1 秒。