aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-03-03 00:15:06 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-03-03 00:29:02 -0200
commit520571ac8adfded98d4c531ef01e256501761d63 (patch)
treea41f52fce26d08ab992a465a0d3dbe476e3e23ab /actionpack
parentaf022918716e894608d655cdb52ec3164fee597a (diff)
downloadrails-520571ac8adfded98d4c531ef01e256501761d63.tar.gz
rails-520571ac8adfded98d4c531ef01e256501761d63.tar.bz2
rails-520571ac8adfded98d4c531ef01e256501761d63.zip
Turn off verbose mode of rack-cache, we still have X-Rack-Cache to check that info
Closes #5245
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md3
-rw-r--r--actionpack/lib/action_dispatch/railtie.rb2
2 files changed, 4 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index babc6e72f7..d7552e74e1 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,8 @@
## Rails 3.2.3 (unreleased) ##
+* Turn off verbose mode of rack-cache, we still have X-Rack-Cache to
+ check that info. Closes #5245. *Santiago Pastorino*
+
* Fix #5238, rendered_format is not set when template is not rendered. *Piotr Sarnacki*
diff --git a/actionpack/lib/action_dispatch/railtie.rb b/actionpack/lib/action_dispatch/railtie.rb
index 2bfeeb348f..acf992c987 100644
--- a/actionpack/lib/action_dispatch/railtie.rb
+++ b/actionpack/lib/action_dispatch/railtie.rb
@@ -16,7 +16,7 @@ module ActionDispatch
config.action_dispatch.rack_cache = {
:metastore => "rails:/",
:entitystore => "rails:/",
- :verbose => true
+ :verbose => false
}
initializer "action_dispatch.configure" do |app|