fix: issue #65

Change-Id: Ie2a92563f2b16ba54b462d2fb6792d3553926eb6
This commit is contained in:
Aleksandr Dobdin 2016-11-14 12:13:36 +00:00
parent 6c0cd0419f
commit 6b9ced8b6a

View File

@ -271,7 +271,8 @@ class NodeManager(BaseNodeManager):
if not self.filter(node, self.conf['soft_filter']): if not self.filter(node, self.conf['soft_filter']):
node.filtered_out = True node.filtered_out = True
if self.conf['fuel_logs_exclude_filtered']: if self.conf['fuel_logs_exclude_filtered']:
self.logs_excluded_nodes.append(node.fqdn) if node.fqdn:
self.logs_excluded_nodes.append(node.fqdn)
self.logs_excluded_nodes.append(node.ip) self.logs_excluded_nodes.append(node.ip)
def get_release(self): def get_release(self):