From 211617191ed9e6bc9da1cee1bdd134c9b8c3cdfd Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Tue, 23 Aug 2005 09:43:36 +0000 Subject: Prevent the benchmark module from blowing up if a non-HTTP/1.1 request is processed git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2039 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/benchmarking.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_controller/benchmarking.rb b/actionpack/lib/action_controller/benchmarking.rb index 386a291196..52820c6908 100644 --- a/actionpack/lib/action_controller/benchmarking.rb +++ b/actionpack/lib/action_controller/benchmarking.rb @@ -42,7 +42,7 @@ module ActionController #:nodoc: log_message = "Completed in #{sprintf("%.5f", runtime)} (#{(1 / runtime).floor} reqs/sec)" log_message << rendering_runtime(runtime) if @rendering_runtime log_message << active_record_runtime(runtime) if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected? - log_message << " [#{complete_request_uri}]" + log_message << " [#{complete_request_uri rescue "unknown"}]" logger.info(log_message) end end -- cgit v1.2.3