From dbbaccbcda7475766919723dda53c0f92afddc4b Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Thu, 20 Nov 2008 04:50:34 +0530 Subject: Revert "Simplify benchmarking and rescue". Need a different approach. This reverts commit 3be9134d1cb882f4be3be8d57b2f8bde5ecde887. --- actionpack/lib/action_controller/base.rb | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'actionpack/lib/action_controller/base.rb') diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 9c10c9a1d6..ad6562024a 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -264,7 +264,7 @@ module ActionController #:nodoc: # Controller specific instance variables which will not be accessible inside views. @@protected_instance_variables = %w(@assigns @performed_redirect @performed_render @variables_added @request_origin @url @parent_controller @action_name @before_filter_chain_aborted @action_cache_path @_session @_cookies @_headers @_params - @_flash @_response @_runtime) + @_flash @_response) # Prepends all the URL-generating helpers from AssetHelper. This makes it possible to easily move javascripts, stylesheets, # and images to a dedicated asset server away from the main web server. Example: @@ -862,9 +862,6 @@ module ActionController #:nodoc: # # render :xml => post.to_xml, :status => :created, :location => post_url(post) def render(options = nil, extra_options = {}, &block) #:doc: - start = Time.now - reset_db_runtime - raise DoubleRenderError, "Can only render or redirect once per action" if performed? if options.nil? @@ -943,9 +940,6 @@ module ActionController #:nodoc: render_for_file(default_template_name, options[:status], layout) end end - ensure - @_runtime[:render] = Time.now - start - log_render_benchmark end # Renders according to the same rules as render, but returns the result in a string instead @@ -1214,7 +1208,6 @@ module ActionController #:nodoc: @template = @_response.template @_headers = @_response.headers - @_runtime = {} end def initialize_current_url @@ -1256,8 +1249,6 @@ module ActionController #:nodoc: end def perform_action - start = Time.now - if action_methods.include?(action_name) send(action_name) default_render unless performed? @@ -1269,11 +1260,6 @@ module ActionController #:nodoc: else raise UnknownAction, "No action responded to #{action_name}. Actions: #{action_methods.sort.to_sentence}", caller end - rescue Exception => exception - rescue_action(exception) - ensure - @_runtime[:perform_action] = Time.now - start - log_benchmarks end def performed? -- cgit v1.2.3