From af2b7c2a93ab2a3dffb726cc3668606ed0621667 Mon Sep 17 00:00:00 2001 From: seolmin Date: Sat, 18 May 2024 12:07:23 +0900 Subject: [PATCH] fix: delete metric yaml files Signed-off-by: seolmin --- src/spaceone/inventory/service/collector_service.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/spaceone/inventory/service/collector_service.py b/src/spaceone/inventory/service/collector_service.py index 3d11440..41edded 100644 --- a/src/spaceone/inventory/service/collector_service.py +++ b/src/spaceone/inventory/service/collector_service.py @@ -136,9 +136,9 @@ def collect(self, params): _LOGGER.debug(error_resource_response) yield error_resource_response.to_primitive() - for service in CLOUD_SERVICE_GROUP_MAP.keys(): - for response in self.collect_metrics(service): - yield response + # for service in CLOUD_SERVICE_GROUP_MAP.keys(): + # for response in self.collect_metrics(service): + # yield response _LOGGER.debug(f"TOTAL TIME : {time.time() - start_time} Seconds")