X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0e57453d2b637a3d105d4e3d67031f3915f9d302..8595030d0314e6f88a245e66f90cce0a306b6867:/services/api/app/models/node.rb diff --git a/services/api/app/models/node.rb b/services/api/app/models/node.rb index abb46fdc66..e470e4c2bd 100644 --- a/services/api/app/models/node.rb +++ b/services/api/app/models/node.rb @@ -13,6 +13,8 @@ class Node < ArvadosModel belongs_to(:job, foreign_key: :job_uuid, primary_key: :uuid) attr_accessor :job_readable + UNUSED_NODE_IP = '127.40.4.0' + api_accessible :user, :extend => :common do |t| t.add :hostname t.add :domain @@ -133,20 +135,22 @@ class Node < ArvadosModel end def dns_server_update - if self.hostname_changed? or self.ip_address_changed? - if not self.ip_address.nil? - stale_conflicting_nodes = Node.where('id != ? and ip_address = ? and last_ping_at < ?',self.id,self.ip_address,10.minutes.ago) - if not stale_conflicting_nodes.empty? - # One or more stale compute node records have the same IP address as the new node. - # Clear the ip_address field on the stale nodes. - stale_conflicting_nodes.each do |stale_node| - stale_node.ip_address = nil - stale_node.save! - end + if hostname_changed? && hostname_was + self.class.dns_server_update(hostname_was, UNUSED_NODE_IP) + end + if hostname_changed? or ip_address_changed? + if ip_address + Node.where('id != ? and ip_address = ? and last_ping_at < ?', + id, ip_address, 10.minutes.ago).each do |stale_node| + # One or more stale compute node records have the same IP + # address as the new node. Clear the ip_address field on + # the stale nodes. + stale_node.ip_address = nil + stale_node.save! end end - if self.hostname and self.ip_address - self.class.dns_server_update(self.hostname, self.ip_address) + if hostname + self.class.dns_server_update(hostname, ip_address || UNUSED_NODE_IP) end end end @@ -225,7 +229,7 @@ class Node < ArvadosModel if !File.exists? hostfile n = Node.where(:slot_number => slot_number).first if n.nil? or n.ip_address.nil? - dns_server_update(hostname, '127.40.4.0') + dns_server_update(hostname, UNUSED_NODE_IP) else dns_server_update(hostname, n.ip_address) end