diff --git a/src/node/waku_node.py b/src/node/waku_node.py index 501e7fcb..eefb0782 100644 --- a/src/node/waku_node.py +++ b/src/node/waku_node.py @@ -262,12 +262,12 @@ class WakuNode: except Exception as ex: raise AttributeError(f"Unknown health response format {ex}") - if self.health_response.get("nodeHealth") != "Ready": - raise AssertionError("Waiting for the node health status: Ready") + if self.health_response.get("nodeHealth") != "READY": + raise AssertionError("Waiting for the node health status: READY") # for p in self.health_response.get("protocolsHealth"): - # if p.get("Rln Relay") != "Ready": - # raise AssertionError("Waiting for the Rln relay status: Ready") + # if p.get("Rln Relay") != "READY": + # raise AssertionError("Waiting for the Rln relay status: READY") logger.info("Node protocols are initialized !!")