mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed incompatible unicode and int comparison in zabbix_host module when using proxy option (#43097)
This commit is contained in:
parent
a9b077f763
commit
d43b2b54d5
1 changed files with 2 additions and 2 deletions
|
@ -396,7 +396,7 @@ class Host(object):
|
||||||
if len(proxy_list) < 1:
|
if len(proxy_list) < 1:
|
||||||
self._module.fail_json(msg="Proxy not found: %s" % proxy_name)
|
self._module.fail_json(msg="Proxy not found: %s" % proxy_name)
|
||||||
else:
|
else:
|
||||||
return proxy_list[0]['proxyid']
|
return int(proxy_list[0]['proxyid'])
|
||||||
|
|
||||||
# get group ids by group names
|
# get group ids by group names
|
||||||
def get_group_ids_by_group_names(self, group_names):
|
def get_group_ids_by_group_names(self, group_names):
|
||||||
|
@ -763,7 +763,7 @@ def main():
|
||||||
|
|
||||||
# If proxy is not specified as a module parameter, use the existing setting
|
# If proxy is not specified as a module parameter, use the existing setting
|
||||||
if proxy is None:
|
if proxy is None:
|
||||||
proxy_id = zabbix_host_obj['proxy_hostid']
|
proxy_id = int(zabbix_host_obj['proxy_hostid'])
|
||||||
|
|
||||||
if state == "absent":
|
if state == "absent":
|
||||||
# remove host
|
# remove host
|
||||||
|
|
Loading…
Reference in a new issue