Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added note about using Sidekiq as mentioned in #46.
  • Loading branch information
Sebastian Oelke committed May 21, 2015
1 parent a9b3bdf commit a697d63
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,18 @@ Devise::Async.setup do |config|
end
```

## Troubleshooting

If you are using Sidekiq and your jobs are enqueued but not processed you might need to set a queue explicitly:

```ruby
# config/initializers/devise_async.rb
Devise::Async.setup do |config|
config.backend = :sidekiq
config.queue = :default
end
```

## Testing

Be aware that since version 0.3.0 devise-async enqueues the background job in active
Expand Down

0 comments on commit a697d63

Please sign in to comment.