Hey Ryan, thanks for this great episode. I'm currently ramping up an app which uses the jquery-fileupload / sidekiq combination. And it seems to work fine.
One thing I've encountered though is the use of the :after_save callback in your Painting model. Sometimes Sidekiq is so fast that the record has not yet been commited when the worker is already on it. So I've changed the :after_save to an :after_commit and everything was fine again.
Hey Ryan, thanks for this great episode. I'm currently ramping up an app which uses the jquery-fileupload / sidekiq combination. And it seems to work fine.
One thing I've encountered though is the use of the :after_save callback in your Painting model. Sometimes Sidekiq is so fast that the record has not yet been commited when the worker is already on it. So I've changed the :after_save to an :after_commit and everything was fine again.
Thanks again and keep up the great work!