I have recently switched from mysql to postgres in one project and have started to get NoMethodError: undefined methodfetch' for nil:NilClass` error when sidekick (we use it as active job adapter) tries to process the photo in background. (full log). With mysql everything worked fine with same configuration.
Okay, my bad, removing .freeze and changing PAPERCLIP_PHOTOS_STORAGE_OPTS.merge to PAPERCLIP_PHOTOS_STORAGE_OPTS.merge! seems fixed the issue, strange that it was working just fine before.
Hello, first of all thank you for this great gem!
I have recently switched from mysql to postgres in one project and have started to get
NoMethodError: undefined method
fetch' for nil:NilClass` error when sidekick (we use it as active job adapter) tries to process the photo in background. (full log). With mysql everything worked fine with same configuration.model:
Is there any gotchas or maybe I have missed something? Thank you in advance!