forked from TrueCloudLab/frostfs-testlib
[#92] Fix method name
Signed-off-by: Andrey Berezin <a.berezin@yadro.com>
This commit is contained in:
parent
98ccd4c382
commit
e919064bb9
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ reporter = get_reporter()
|
|||
|
||||
class BasicHealthcheck(Healthcheck):
|
||||
@reporter.step_deco("Perform healthcheck for {cluster_node}")
|
||||
def perform_healthcheck(self, cluster_node: ClusterNode):
|
||||
def perform(self, cluster_node: ClusterNode):
|
||||
health_check = storage_node_healthcheck(cluster_node.storage_node)
|
||||
if health_check.health_status != "READY" or health_check.network_status != "ONLINE":
|
||||
raise AssertionError("Node {cluster_node} is not healthy")
|
||||
|
|
Loading…
Reference in a new issue