aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-03-21 14:57:54 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-03-22 07:45:10 +0900
commitfb1163949a23c66798d85181d62cd2f7a6736729 (patch)
treeae1059b066c9ab1635b6b544c81b03376e369528 /guides/source/configuring.md
parentdda31d59a03adb7e5aa372e72bb66a3886632f2f (diff)
downloadrails-fb1163949a23c66798d85181d62cd2f7a6736729.tar.gz
rails-fb1163949a23c66798d85181d62cd2f7a6736729.tar.bz2
rails-fb1163949a23c66798d85181d62cd2f7a6736729.zip
update Active Job default adapter [ci skip]
Follow up to 625baa69d14881ac49ba2e5c7d9cac4b222d7022
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 33165ba166..e57d873719 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -583,7 +583,7 @@ There are a few configuration options available in Active Support:
`config.active_job` provides the following configuration options:
-* `config.active_job.queue_adapter` sets the adapter for the queueing backend. The default adapter is `:inline` which will perform jobs immediately. For an up-to-date list of built-in adapters see the [ActiveJob::QueueAdapters API documentation](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
+* `config.active_job.queue_adapter` sets the adapter for the queueing backend. The default adapter is `:async`. For an up-to-date list of built-in adapters see the [ActiveJob::QueueAdapters API documentation](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
```ruby
# Be sure to have the adapter's gem in your Gemfile