-
Notifications
You must be signed in to change notification settings - Fork 155
ActiveJob not running in the background #185
Comments
@passabilities Did you find a reason why it's not being processed in the background ? |
if I remember correctly there was something wrong with the file I was using. |
I am having the same issue. I'm wondering if it is related to a Rails upgrade I did at some point. Looking at ActiveJob settings I noticed this: Rails.application.config.active_job.queue_adapter is set to 'inline'(not 'async') Seems that might be the culprit, but I don't understand how it worked in the past. As far as I know we haven't changed that parameter. |
realizing now that it should probably be set to something like :delayed_job |
Seems to only be an issue with rails 4.2.*, setting
fixed the issue for me. |
I'm having the same problem |
Have you guys tried with a different file? I was having an issue where it would start processing but an error would occur without warning because there was something wrong with the encoding of the file I was using. |
Currently everything is working, except for the fact that my files are still being processed the same request as the initial upload.
Refer to my SO post for details: http://stackoverflow.com/questions/38277001/delayed-paperclip-not-running-in-the-background
The text was updated successfully, but these errors were encountered: