Module: check_mk
Branch: master
Commit: 119f675cf63aa2a47a350fed2312b7b49ef2d468
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=119f675cf63aa2…
Author: Simon Betz <si(a)mathias-kettner.de>
Date: Wed Mar 1 15:22:36 2017 +0100
fixed wrong node info
Change-Id: I99c0948b923c0281300ee7cb43b0bb327cbf912f
---
modules/check_mk_base.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/check_mk_base.py b/modules/check_mk_base.py
index 9eda031..34e116a 100644
--- a/modules/check_mk_base.py
+++ b/modules/check_mk_base.py
@@ -289,7 +289,7 @@ def get_host_info(hostname, ipaddress, checkname,
max_cachefile_age=None, ignore
ignore_check_interval=True)
if new_info != None:
if has_nodeinfo:
- new_info = add_nodeinfo(new_info, None)
+ new_info = add_nodeinfo(new_info, node)
info += new_info
at_least_one_without_exception = True