From b06dc7a76768dc7c0fb3cbb905c21110d78aca92 Mon Sep 17 00:00:00 2001 From: Napsty Date: Fri, 14 Feb 2025 13:50:19 +0100 Subject: [PATCH] Update to newer pywbem exception call --- check_esxi_hardware.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/check_esxi_hardware.py b/check_esxi_hardware.py index 1b8446d..b186cca 100755 --- a/check_esxi_hardware.py +++ b/check_esxi_hardware.py @@ -747,10 +747,12 @@ if Version(pywbemversion) >= Version("1.0.0"): verboseoutput("pywbem is 1.0.0 or newer") import pywbem._cim_operations as PywbemCimOperations import pywbem._cim_http as PywbemCimHttp + import pywbem._exceptions as PywbemExceptions else: verboseoutput("pywbem is older than 1.0.0") import pywbem.cim_operations as PywbemCimOperations import pywbem.cim_http as PywbemCimHttp + import pywbem._exceptions as PywbemExceptions # Add a timeout for the script. When using with Nagios, the Nagios timeout cannot be < than plugin timeout. if on_windows == False and timeout > 0: @@ -778,7 +780,7 @@ if vendor=='auto': sys.exit (ExitUnknown) else: verboseoutput("Unknown CIM Error: %s" % args) - except pywbem._exceptions.ConnectionError as args: + except PywbemExceptions.ConnectionError as args: GlobalStatus = ExitUnknown print("UNKNOWN: {}".format(args)) sys.exit (GlobalStatus) @@ -813,7 +815,7 @@ for classe in ClassesToCheck : sys.exit (ExitUnknown) else: verboseoutput("Unknown CIM Error: %s" % args) - except pywbem._exceptions.ConnectionError as args: + except PywbemExceptions.ConnectionError as args: GlobalStatus = ExitUnknown print("UNKNOWN: {}".format(args)) sys.exit (GlobalStatus)