airbrake不能通过Rake任务工作

时间:2013-04-14 16:41:42

标签: ruby-on-rails rake airbrake

ENV

  • Rails 3.2.13
  • ruby​​ 1.9.3p392
  • airbrake 3.1.11
  • rake,版本10.0.4

我的配置文件和rake任务文件

#lib/tasks/raise.rake
namespace :raise do
  desc "raise sth"
    task :sth => :environment do
      num = 1 / 0 # should raise error
    end
  end
end

# config/initializers/airbrake.rb
Airbrake.configure do |config|
  config.rescue_rake_exceptions = true
  config.api_key = Setting.airbrake_api
end

我希望运行RAILS_ENV=production rake raise:sth向我的airbrake发送消息,但没有任何反应,只输出divided by 0,而不是任何调用堆栈信息。

请帮帮我,谢谢〜

0 个答案:

没有答案