Somehow missed this performance checkin for the 2000 ips check.

git-svn-id: file:///home/svn/framework3/trunk@12661 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Tod Beardsley 2011-05-19 12:57:14 +00:00
parent 81eb15148f
commit 76ebc59f29
1 changed files with 2 additions and 3 deletions

View File

@ -84,7 +84,7 @@ class Host < ActiveRecord::Base
# has an opinion and which doesn't. It would also be nice to
# identify "impossible" combinations of services and alert that
# something funny is going on.
host.services.find(:all).each do |s|
host.services.each do |s|
next if not s.info
points = 0
case s.name
@ -722,8 +722,7 @@ class Host < ActiveRecord::Base
end
end
# host.save! (fix this first)
host.save
host.save if host.changed?
end
protected