nil is not a symbol
Thanks for that reminder, delayed_job! Almost as helpful as “Windows error 32.”
The real issue here is that the handler field in your delayed_jobs table is not large enough to hold the serialized version of your delayed method call. The “text” data type has a maximum storage capacity of 65535 bytes (in MySQL) which might be too small for some calls. For example, if you are using an object that contains one or more text field attributes.
The solution is to change your handler field from text to longtext (yes, that’s right - longtext). So, for MySQL users just…
alter table delayed_jobs change column handler handler longtext null default null;
-
castellanosko9 liked this
-
valenzuelaki09 liked this
-
jfoxny posted this