From 3f176d90a43f9e95954111238299a0175fa845b8 Mon Sep 17 00:00:00 2001 From: Atul Agarwal Date: Thu, 14 Oct 2021 06:16:34 +0000 Subject: [PATCH] Resolved 1684 - MON fails to collect metrics from an OpenStack VIM with metrics support if there is another OpenStack VIM without metrics support registered Change-Id: I738a8f1a75d801e690fcfab924d0ce9791afaf84 Signed-off-by: Atul Agarwal --- osm_mon/collector/service.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osm_mon/collector/service.py b/osm_mon/collector/service.py index 005f844..132e9da 100644 --- a/osm_mon/collector/service.py +++ b/osm_mon/collector/service.py @@ -211,9 +211,9 @@ class CollectorService: ) metrics.extend(result) log.debug("result = %s" % (result)) - except keystoneauth1.exceptions.connection.ConnectTimeout as e: - log.info("Keystone connection timeout during metric collection") - log.debug("Keystone connection timeout exception %s" % (e)) + except keystoneauth1.exceptions.connection.ConnectionError as e: + log.info("Keystone connection error during metric collection") + log.debug("Keystone connection error exception %s" % (e)) except concurrent.futures.TimeoutError as e: # Some processes have not completed due to timeout error log.info( -- 2.17.1