Typo in stale thread removal.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3731 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2006-03-01 22:09:46 +00:00
parent 2b02596b96
commit d28c0f7405

View File

@@ -98,7 +98,7 @@ module ActiveRecord
stale = Set.new(cache.keys)
Thread.list.each do |thread|
stale -= t.object_id if t.alive?
stale -= thread.object_id if t.alive?
end
stale.each do |thread_id|