-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Using devise_async and sidekiq to send emails asynchronously #727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
please use gem 'delayed_job_active_record' web interface for delayed jobgem 'delayed_job_web', '>= 1.2.0' instead of devise_async 0.7.0 |
Did you mean using delayed_job instead of sidekiq? |
@volfgox Did you solve? I'm facing the same problem with resque. Thanks |
+1 |
Reading devise docs I found a solution: Take a read on https://github.com/plataformatec/devise#activejob-integration, specifically on "ActiveJob Integration". |
Workaround posted, closing for now |
I am using
sidekiq
anddevise_token_auth
in my application. I try to send emails fromdevise_token_auth
to users asynchronously viasidekiq
. So, I trydevise_async
to connect dots together. When running the application anddevise_token_auth
tries to send email, the following error raised and nothing enqueued insidekiq
's queue:What's the problem?
The text was updated successfully, but these errors were encountered: