Module: check_mk
Branch: master
Commit: a2873f1a3cce4db38246ce44a5fb88957585b309
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=a2873f1a3cce4d…
Author: Marcel Arentz <ma(a)mathias-kettner.de>
Date: Thu Mar 23 12:30:12 2017 +0100
updated werk 4194
Change-Id: I0db6577a7abe017f81aa520fb7ed3e5bfcc89c74
---
checks/esx_vsphere_hostsystem | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/checks/esx_vsphere_hostsystem b/checks/esx_vsphere_hostsystem
index 7c794ab..c91e82b 100644
--- a/checks/esx_vsphere_hostsystem
+++ b/checks/esx_vsphere_hostsystem
@@ -418,14 +418,13 @@ def esx_vsphere_multipath_convert(info):
paths.setdefault(lun_id, [])
# Note: There is no path type information available in these esx paths
paths[lun_id].append((state, None, path))
- continue
# Legacy format for older vSphere versions:
else:
path_tokens = path.split('-')
if "." not in path_tokens[-1]:
continue # invalid format / unknown type
- path_type, path_id = path_tokens[-1].split('.')
+ path_type, lun_id = path_tokens[-1].split('.')
hw_type = path.split('.')[0]