特定のコントローラーのアクションに対して HTTP GET を行う Heroku スケジュール タスクを使用しようとしています。タスクは次のようになります。
require 'net/http'
desc "This task is called by the Heroku scheduler add-on"
task :send_notifications => :environment do
Net::HTTP.get("http://testapp.com", "/test/send_notifications")
end
実行時:
heroku rake send_notifications
次のエラーが表示されます。
rake aborted!
getaddrinfo: Name or service not known
/app/lib/tasks/scheduler.rake:5:in `block in <top (required)>'
何かご意見は?
前もって感謝します