mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-03 14:33:07 +00:00
adapt the tests to the new health check result returned by wakunode2 app (#123)
see the following for further details why this is needed: https://github.com/waku-org/nwaku/pull/3456
This commit is contained in:
parent
b9dcd4004e
commit
3ab0efe15f
@ -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 !!")
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user