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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Add the Lambdakiq gem to your `Gemfile`.
30
30
gem 'lambdakiq'
31
31
```
32
32
33
-
Open `config/initializers/production.rb` and set Lambdakiq as your ActiveJob queue adapter.
33
+
Open `config/environments/production.rb` and set Lambdakiq as your ActiveJob queue adapter.
34
34
35
35
```ruby
36
36
config.active_job.queue_adapter =:lambdakiq
@@ -45,7 +45,7 @@ class ApplicationJob < ActiveJob::Base
45
45
end
46
46
```
47
47
48
-
Using ActionMailer's built-in deliver job with ActiveJob? Make sure to include the Lambdakiq worker and set the queue name depending on your Rails version.
48
+
Using ActionMailer's built-in deliver job with ActiveJob? Make sure to include the Lambdakiq worker and set the queue name depending on your Rails version. You can do this in a newly created `config/initializers//action_mailer.rb` or another initializer of your choice.
0 commit comments