Heroku - Ruby 错误循环



我没有对 ruby 文件进行任何更改,只是对布局进行了一些更改,并且在我的服务器上的 Papertrail 中看到以下错误。 我做了一些挖掘,似乎找不到答案。

此外,相同的代码库在 QA 系统中运行,没有错误。 两台服务器位于同一版本Cedar-14上,唯一的区别是Prod服务器具有工作线程Dyno,而QA没有。

Feb 01 11:24:46 skincaremarketplace app/worker.1:  Don't know how to build 
task 'jobs:work' 
Feb 01 11:24:46 skincaremarketplace app/worker.1: /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/cli/exec.rb:74:in `load' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/cli/exec.rb:74:in `kernel_load' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/cli/exec.rb:27:in `run' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/cli.rb:360:in `exec' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/cli.rb:20:in `dispatch' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/cli.rb:10:in `start' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/exe/bundle:30:in `block in <top (required)>' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/vendor/bundle/ruby/2.2.0/gems/bundler-1.15.2/exe/bundle:22:in `<top (required)>' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/bin/bundle:3:in `load' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  /app/bin/bundle:3:in `<main>' 
Feb 01 11:24:46 skincaremarketplace app/worker.1:  (See full trace by running task with --trace) 
Feb 01 11:24:46 skincaremarketplace heroku/worker.1:  Process exited with status 1 
Feb 01 11:40:45 skincaremarketplace heroku/worker.1:  State changed from crashed to starting 
Feb 01 11:40:52 skincaremarketplace heroku/worker.1:  Starting process with command `bundle exec rake jobs:work` 
Feb 01 11:40:52 skincaremarketplace heroku/worker.1:  State changed from starting to up 
Feb 01 11:41:02 skincaremarketplace heroku/worker.1:  Process exited with status 1 
Feb 01 11:41:02 skincaremarketplace heroku/worker.1:  State changed from up to crashed 
Feb 01 11:41:02 skincaremarketplace app/worker.1:  rake aborted!

您的生产服务器工作线程dyno尝试运行bundle exec rake jobs:work(检查您的Procfile(。看起来你没有那个任务。它通常应该在lib/tasks/jobs.rake.

如果你扩大你的QA员工规模,他们也会失败。

在查看了 Heroku 上的配置后,我们遵循相同模式的所有其他应用程序都不使用 jobs:work 或具有 jobs.rake 文件。 工作人员被错误地打开。 调查确实提供了一些线索,所以谢谢斯坦。

相关内容

  • 没有找到相关文章

最新更新