monitoring/zabbix_host: Fix (no) proxy handling

When updating a host with no proxy explicitly set,
the host was always reported as changed, because it was
comparing `"0"` and `None`.
pull/18777/head
Lukáš Lalinský 8 years ago committed by Matt Clay
parent ff592dacc5
commit 3e81023a87

@ -362,8 +362,9 @@ class Host(object):
if set(list(template_ids)) != set(exist_template_ids): if set(list(template_ids)) != set(exist_template_ids):
return True return True
if host['proxy_hostid'] != proxy_id: if proxy_id is not None:
return True if host['proxy_hostid'] != proxy_id:
return True
return False return False

Loading…
Cancel
Save