From f8409fa9f96e28385dcbb330bb09831ebef6e0f6 Mon Sep 17 00:00:00 2001 From: Dmitriy Zayakin Date: Wed, 5 Jul 2023 09:21:25 +0300 Subject: [PATCH] Change name metric Inner ring Signed-off-by: Dmitriy Zayakin --- src/frostfs_testlib/storage/dataclasses/frostfs_services.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frostfs_testlib/storage/dataclasses/frostfs_services.py b/src/frostfs_testlib/storage/dataclasses/frostfs_services.py index 2b52c1f..23e3335 100644 --- a/src/frostfs_testlib/storage/dataclasses/frostfs_services.py +++ b/src/frostfs_testlib/storage/dataclasses/frostfs_services.py @@ -16,7 +16,7 @@ class InnerRing(NodeBase): """ def service_healthcheck(self) -> bool: - health_metric = "frostfs_node_ir_health" + health_metric = "frostfs_ir_ir_health" output = ( self.host.get_shell() .exec(f"curl -s localhost:6662 | grep {health_metric} | sed 1,2d") @@ -167,7 +167,7 @@ class StorageNode(NodeBase): def get_un_locode(self): return self._get_attribute(ConfigAttributes.UN_LOCODE) - + def get_data_directory(self) -> str: return self.host.get_data_directory(self.name)