aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-06-20 00:35:11 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-06-20 00:35:11 -0700
commit83c3e9903d2ad76ef4aea1d64d6514443f6ad438 (patch)
tree256075d142d0147fe86c12c631c4182b2c57a0e5 /activesupport
parentf47c81ff37afb5e5340b6f2cb47a5bb76b94f5c0 (diff)
downloadrails-83c3e9903d2ad76ef4aea1d64d6514443f6ad438.tar.gz
rails-83c3e9903d2ad76ef4aea1d64d6514443f6ad438.tar.bz2
rails-83c3e9903d2ad76ef4aea1d64d6514443f6ad438.zip
Don't profile GC runs/time by default
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/testing/performance.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/performance.rb b/activesupport/lib/active_support/testing/performance.rb
index 2317171467..cadcb155c1 100644
--- a/activesupport/lib/active_support/testing/performance.rb
+++ b/activesupport/lib/active_support/testing/performance.rb
@@ -18,7 +18,7 @@ module ActiveSupport
{ :benchmark => false,
:runs => 1,
:min_percent => 0.02,
- :metrics => [:process_time, :memory, :objects, :gc_runs, :gc_time],
+ :metrics => [:process_time, :memory, :objects],
:formats => [:flat, :graph_html, :call_tree],
:output => 'tmp/performance' }
end