mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-05 23:43: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:
|
except Exception as ex:
|
||||||
raise AttributeError(f"Unknown health response format {ex}")
|
raise AttributeError(f"Unknown health response format {ex}")
|
||||||
|
|
||||||
if self.health_response.get("nodeHealth") != "Ready":
|
if self.health_response.get("nodeHealth") != "READY":
|
||||||
raise AssertionError("Waiting for the node health status: Ready")
|
raise AssertionError("Waiting for the node health status: READY")
|
||||||
|
|
||||||
# for p in self.health_response.get("protocolsHealth"):
|
# for p in self.health_response.get("protocolsHealth"):
|
||||||
# if p.get("Rln Relay") != "Ready":
|
# if p.get("Rln Relay") != "READY":
|
||||||
# raise AssertionError("Waiting for the Rln relay status: Ready")
|
# raise AssertionError("Waiting for the Rln relay status: READY")
|
||||||
|
|
||||||
logger.info("Node protocols are initialized !!")
|
logger.info("Node protocols are initialized !!")
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user