DEV: Include the thread in the error message.
This commit is contained in:
parent
6ada825a4d
commit
ae2f00ee73
|
@ -42,7 +42,9 @@ describe ActiveRecord::ConnectionHandling do
|
||||||
ActiveRecord::Base.unstub(:postgresql_connection)
|
ActiveRecord::Base.unstub(:postgresql_connection)
|
||||||
|
|
||||||
(Thread.list - @threads).each do |thread|
|
(Thread.list - @threads).each do |thread|
|
||||||
raise "Thread still running" unless thread.join(5)
|
unless thread.join(5)
|
||||||
|
raise "Thread still running: #{thread}"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
ActiveRecord::Base.establish_connection
|
ActiveRecord::Base.establish_connection
|
||||||
|
|
Loading…
Reference in New Issue