0

我使用章鱼宝石。如果我在活动记录对象上调用延迟方法,则会收到以下错误:

Delayed::DeserializationError:
Job failed to load: undefined method `[]' for nil:NilClass

只有在八达通开启时才会出现此错误。

没有对活动记录对象的任何引用的延迟作业按预期工作。

解决此问题的唯一方法是更改​​所有代码:

active_record_object.delay.trigger_custom_action(another_active_record_object)

使用非常原始参数的虚拟类,并在方法内重新加载活动记录对象?

class Jobs 
    def self.trigger_custom_action(id1, id2)
        active_record_object = Something.find(id1)
        another_active_record_object = Something.find(id2)
        active_record_object.trigger_custom_action(another_active_record_object)
    end
end
Jobs.trigger_custom_action(active_record_object.id, another_active_record.id)
4

1 回答 1

0

我们决定改用 Rails 6 的早期版本。我们没有找到解决工人测功机问题的方法。

于 2019-04-02T14:19:23.197 回答