How to reproduce/sanitize messy POST params to avoid YAML serialization issues with delayed_job?

后端 未结 2 1986
挽巷
挽巷 2021-01-22 08:34

Today, every time I was starting delayed_job workers, the process would die immediately and silently.

After some investigation (and finding out about the fo

相关标签:
2条回答
  • 2021-01-22 08:54

    Any idea how I should sanitize my params to avoid such a problem?

    Do not serialize your activerecord objects, instead just serialize the AR id, then do a find as the first step in the job.

    Not sure why your serialized AR is corrupted, did your schema change between the time the serialization occured and before the job ran?

    0 讨论(0)
  • 2021-01-22 09:16

    A detailed explanation of what @house9 is suggesting:

    Do NOT do the following (even though the delayed_job's git repo suggests is as example)

    Notifier.delay.signup(@user)
    
    class NotifierMailer < ActionMailer::Base
      def signup(user)
      end
    end
    

    as this will attempt to yaml encode @user (which can cause issues)

    But rather, any time you have an object (especially an AR object) that has an id, you should pass the id when calling the delayed job and retrieve it later:

    Notifier.delay.signup(@user.id)
    
    class NotifierMailer < ActionMailer::Base
      def signup(id)
         @user = User.find_by_id(id)
      end
    end
    
    0 讨论(0)
提交回复
热议问题