From 8dab9735cf2b1f9716ef1a6fe143015f5661fd46 Mon Sep 17 00:00:00 2001 From: Yaroslava Lukoyanova Date: Tue, 30 May 2023 19:15:13 +0300 Subject: [PATCH] Add interface for get_list_of_all_pilorama function --- src/frostfs_testlib/storage/dataclasses/frostfs_services.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frostfs_testlib/storage/dataclasses/frostfs_services.py b/src/frostfs_testlib/storage/dataclasses/frostfs_services.py index e87d264..73af59b 100644 --- a/src/frostfs_testlib/storage/dataclasses/frostfs_services.py +++ b/src/frostfs_testlib/storage/dataclasses/frostfs_services.py @@ -177,6 +177,9 @@ class StorageNode(NodeBase): def delete_pilorama(self): self.host.delete_pilorama(self.name) + def get_list_of_all_pilorama(self): + return self.host.get_list_of_all_pilorama(self.name) + @property def label(self) -> str: return f"{self.name}: {self.get_rpc_endpoint()}" -- 2.45.2