这是我的config/initializers/tire.rb
文件:
if Rails.env.production?
Tire.configure do
url "http://remoteserver.com:9200"
end
end
如果我在我的生产服务器上尝试:
bundle exec rake environment tire:import CLASS=Object FORCE=true RAILS_ENV=production
我得到错误:
The original exception was: #<Errno::ECONNREFUSED: Connection refused - connect(2)>
如果我删除这if
句话工作正常。
我如何知道轮胎.rb 文件上的 rails 环境?