0

我正在使用 Stalker 与生产服务器上的 beanstalkd 交互。我的工作文件如下所示:

gem 'stalker'

# config/jobs.rb with Rails
RAILS_ENV = ENV["RAILS_ENV"] || "development"
require File.expand_path("../environment", __FILE__)

job "mapeamento_paciente.importar" do |args|
   mapeamento = Mapeamento::Paciente.find(args['id'])
   importador = ImportadorPaciente.new(mapeamento)

   importador.importar!
end

我正在尝试通过发出以下命令来启动 stalker:

bundle exec stalk config/jobs.rb RAILS_ENV=production

但是在加载环境文件时,Rails 会尝试访问开发数据库,​​而不是生产数据库,从而发出错误。有谁知道如何解决这个问题!?

谢谢!

4

1 回答 1

1
RAILS_ENV=production bundle exec stalk config/jobs.rb
于 2012-04-21T15:46:42.513 回答