You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ActiveJob by default deserializes the params passed to jobs when running execute.
These params can either be literals or objects like ActiveRecord::Base model objects, that should be able to be modified within Que#run.
This however is not possible due to this line, which recurringly freezes all arguments passed by ActiveJob's QueAdapter, causing FrozenError all over the place.
Shouldn't it be removed or is it a requirement?
The text was updated successfully, but these errors were encountered:
ActiveJob
by default deserializes the params passed to jobs when runningexecute
.These params can either be literals or objects like
ActiveRecord::Base
model objects, that should be able to be modified withinQue#run
.This however is not possible due to this line, which recurringly freezes all arguments passed by
ActiveJob
'sQueAdapter
, causingFrozenError
all over the place.Shouldn't it be removed or is it a requirement?
The text was updated successfully, but these errors were encountered: