Merge pull request #38 from edx/e0d/enable-profiling

enabling profiling for the load test environment
This commit is contained in:
e0d 2013-07-09 09:37:15 -07:00
Родитель f50e9fde8c f0fa00dfb8
Коммит 39b82502b5
1 изменённых файлов: 4 добавлений и 0 удалений

4
app.rb
Просмотреть файл

@ -22,6 +22,10 @@ if ["staging", "production", "loadtest", "edgestage","edgeprod"].include? enviro
require 'newrelic_rpm'
end
if ENV["ENABLE_GC_PROFILER"]
GC::Profiler.enable
end
set :cache, Dalli::Client.new
application_yaml = ERB.new(File.read("config/application.yml")).result()