これは私の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
文を削除すると、正常に機能します。
Tire.rb ファイルで Rails 環境を知るにはどうすればよいですか?