From c0ce055b05ed76a6dbc711e4c816c8a95e2e686a Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Sat, 16 Jun 2018 09:57:31 +0900 Subject: Fix Active Storage configuration example [ci skip] It is necessary to specify a value to `config.active_storage`. --- guides/source/configuring.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guides/source/configuring.md') 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 -- cgit v1.2.3