rails 3.2.5、ruby 1.9.2-p290、delayed_job 3.0.3、delayed_job_mongoid 2.0.0 を使用し、実行すると:
MyMailer.delay.signup_email(user)
我々が得る:
ruby(20929,0x7fff73dff180) malloc: * オブジェクト 0x7fa25a4f6d80 のエラー: 解放中のポインタが割り当てられていません * malloc_error_break にブレークポイントを設定してデバッグします Abort trap: 6
メーラーは次のとおりです。
class MyMailer < ActionMailer::Base
default :from => "support@myapp.com"
def signup_email(user)
@user = user
mail( :to => user.email,
:subject => "Welcome" )
end
end
他の誰かがこれを見たことがありますか?バンドルの更新を試みましたが、役に立たなかったようです。