diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-06-16 09:57:31 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2018-06-16 09:57:31 +0900 |
commit | c0ce055b05ed76a6dbc711e4c816c8a95e2e686a (patch) | |
tree | 00ff573de1c028558313a1aebbed588975213097 | |
parent | 77efa0748446122c2562a2274ffa924ea857dfac (diff) | |
download | rails-c0ce055b05ed76a6dbc711e4c816c8a95e2e686a.tar.gz rails-c0ce055b05ed76a6dbc711e4c816c8a95e2e686a.tar.bz2 rails-c0ce055b05ed76a6dbc711e4c816c8a95e2e686a.zip |
Fix Active Storage configuration example [ci skip]
It is necessary to specify a value to `config.active_storage`.
-rw-r--r-- | guides/source/configuring.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 6b3f808c6a..6b634028c4 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -811,13 +811,13 @@ text/javascript image/svg+xml application/postscript application/x-shockwave-fla * `config.active_storage.queue` can be used to set the name of the Active Job queue used to perform jobs like analyzing the content of a blob or purging a blog. ```ruby - config.active_job.queue = :low_priority + config.active_storage.queue = :low_priority ``` * `config.active_storage.logger` can be used to set the logger used by Active Storage. Accepts a logger conforming to the interface of Log4r or the default Ruby Logger class. ```ruby - config.active_job.logger = ActiveSupport::Logger.new(STDOUT) + config.active_storage.logger = ActiveSupport::Logger.new(STDOUT) ``` ### Configuring a Database |