aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2017-06-18 23:36:24 +0930
committerGitHub <noreply@github.com>2017-06-18 23:36:24 +0930
commitfb1110119cbf084a1423324ca53f94682e4217bd (patch)
treeb7390f0a855817b75f87eec13d28f9bfcd379cbc /activerecord
parent67a579419b275c4c982b02d9b6380cf4cbdaba20 (diff)
parent542f92935cdc1b23078364e547f923ec180e7efe (diff)
downloadrails-fb1110119cbf084a1423324ca53f94682e4217bd.tar.gz
rails-fb1110119cbf084a1423324ca53f94682e4217bd.tar.bz2
rails-fb1110119cbf084a1423324ca53f94682e4217bd.zip
Merge pull request #29492 from kamipo/remove_debug_print
Remove debug print
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/connection_pool_test.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/activerecord/test/cases/connection_pool_test.rb b/activerecord/test/cases/connection_pool_test.rb
index 7e88c9cf7a..00a0187b57 100644
--- a/activerecord/test/cases/connection_pool_test.rb
+++ b/activerecord/test/cases/connection_pool_test.rb
@@ -499,21 +499,8 @@ module ActiveRecord
if failed
second_thread_done.set
- puts
- puts ">>> test_disconnect_and_clear_reloadable_connections_are_able_to_preempt_other_waiting_threads / #{group_action_method}"
- p [first_thread, second_thread]
- p pool.stat
- p pool.connections.map(&:owner)
-
first_thread.join(2)
second_thread.join(2)
-
- puts "---"
- p [first_thread, second_thread]
- p pool.stat
- p pool.connections.map(&:owner)
- puts "<<<"
- puts
end
first_thread.join(10) || raise("first_thread got stuck")