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
{{ message }}
This repository has been archived by the owner on Oct 5, 2018. It is now read-only.
We have bulk image upload to S3 using delayed_job. For a single image, it is working correctly.
However, in case of multiple, only the first image gets uploaded to s3 and for the remaining images, I get the following error - Job failed to load: undefined class/module DelayedPaperclip::. Handler: \"--- !ruby/struct:DelayedPaperclip::Jobs::DelayedJob\\ninstance_klass: Photo\\ninstance_id: 133298\\nattachment_name: :image\\n
We have one dedicated server for delayed_job and one for application server. So there are 2 issues here-
If an image is uploaded to the app server, then how would the delayed_job server upload the file to S3? But then why is it working for a single image and 1st file in case of multiple image upload?
Considering that delayed_job server doesn't get the file, then the error should have been something like 'file not found', why is it "undefined class/module DelayedPaperclip".
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We have bulk image upload to S3 using delayed_job. For a single image, it is working correctly.
However, in case of multiple, only the first image gets uploaded to s3 and for the remaining images, I get the following error -
Job failed to load: undefined class/module DelayedPaperclip::. Handler: \"--- !ruby/struct:DelayedPaperclip::Jobs::DelayedJob\\ninstance_klass: Photo\\ninstance_id: 133298\\nattachment_name: :image\\n
We have one dedicated server for delayed_job and one for application server. So there are 2 issues here-
The text was updated successfully, but these errors were encountered: