Skip to content

Commit

Permalink
Turn off verbose mode of rack-cache, we still have X-Rack-Cache to ch…
Browse files Browse the repository at this point in the history
…eck that info

Closes rails#5245
  • Loading branch information
spastorino committed Mar 3, 2012
1 parent af02291 commit 520571a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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*


Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_dispatch/railtie.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Railtie < Rails::Railtie
config.action_dispatch.rack_cache = {
:metastore => "rails:/",
:entitystore => "rails:/",
:verbose => true
:verbose => false
}

initializer "action_dispatch.configure" do |app|
Expand Down

0 comments on commit 520571a

Please sign in to comment.