Do not delete duplicate host when fetching Zabbix Hosts (#53160)

pull/53173/head
Michael Miko 5 years ago committed by John R Barker
parent 75abb27677
commit 00efa26cdb

@ -137,7 +137,6 @@ class Host(object):
listed_hostnames = []
for zabbix_host in hosts:
if zabbix_host['name'] in listed_hostnames:
self._zapi.host.delete([zabbix_host['hostid']])
continue
unique_hosts.append(zabbix_host)
listed_hostnames.append(zabbix_host['name'])

Loading…
Cancel
Save