From 80697d11b209d1d52c15029a0b4af0e3c0e0fba0 Mon Sep 17 00:00:00 2001 From: Brian Lopez Date: Sat, 27 Nov 2010 11:10:18 -0800 Subject: [PATCH] we don't need to print the error here as the caller should be handling that on their own the way they want to --- lib/active_record/connection_adapters/em_mysql2_adapter.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/active_record/connection_adapters/em_mysql2_adapter.rb b/lib/active_record/connection_adapters/em_mysql2_adapter.rb index e26c9df..36bc552 100644 --- a/lib/active_record/connection_adapters/em_mysql2_adapter.rb +++ b/lib/active_record/connection_adapters/em_mysql2_adapter.rb @@ -35,7 +35,6 @@ module Mysql2 results = @client.async_result @deferable.succeed(results) rescue Exception => e - puts e.backtrace.join("\n\t") @deferable.fail(e) end end