2

我正在尝试在 heroku 上加载一个简单的 ruby​​ 应用程序,该应用程序使用 resque 定期运行后台任务,该任务检查电子邮件帐户。它与工头在本地运行良好,但在heroku上不断崩溃。

我想这可能Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch来自我的 while 循环,它是永久的,因此超过 60 秒?我应该使用某种不同的进程来启动 smsnotify.rb 吗?

任何帮助将不胜感激!

我的heroku日志:

2013-04-06T20:49:15+00:00 heroku[slugc]: Slug compilation finished
2013-04-06T20:49:18+00:00 heroku[web.1]: Starting process with command `bundle exec ruby smsnotify.rb -p 9129`
2013-04-06T20:49:21+00:00 app[web.1]: /app/vendor/bundle/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/multibyte.rb:26: warning: already initialized constant VALID_CHARACTER
2013-04-06T20:50:19+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2013-04-06T20:50:19+00:00 heroku[web.1]: Stopping process with SIGKILL
2013-04-06T20:50:20+00:00 heroku[web.1]: Process exited with status 137
2013-04-06T20:50:20+00:00 heroku[web.1]: State changed from starting to crashed

我的档案:

web: bundle exec ruby smsnotify.rb -p $PORT
resque: env TERM_CHILD=1 bundle exec rake jobs:work

smsnotify.rb:

require "./email_checker"
require 'hirefire'
require 'resque' 
Resque.redis = 'redis://redistogo:removed:removed/'
HireFire::Initializer.initialize!

while true do
  Resque.enqueue(EmailChecker)
  sleep 30
  puts "Starting Email Job"
end
4

1 回答 1

0

您没有启动绑定到端口的进程,因此它在抱怨。

您只需将您的 Procfile 更改为“worker”而不是“web”

如果你有一个网络前端,那么你需要一个工人和一个网络

于 2013-04-08T19:55:48.153 回答