commit | bd18278ceef301650ee9777647f9c64f967b1672 | [log] [tgz] |
---|---|---|
author | Jon Hall <jhall@onlab.us> | Mon Mar 28 16:42:22 2016 -0700 |
committer | Jon Hall <jhall@onlab.us> | Mon Mar 28 16:42:22 2016 -0700 |
tree | a347e33326f2c579968b4fc5e7fe5f95d1a9b799 | |
parent | 9c04a32c290cef20eebe72a2b7ac6f3cb0b0e1ed [diff] |
Updated check for node state. New state READY indicated node is active and all components were correctly loaded. Change-Id: Ie466e365673bc5bea88432d2e1e4ade93a98c7be
diff --git a/TestON/tests/HAfullNetPartition/HAfullNetPartition.py b/TestON/tests/HAfullNetPartition/HAfullNetPartition.py index 5c342f3..5a6de1a 100644 --- a/TestON/tests/HAfullNetPartition/HAfullNetPartition.py +++ b/TestON/tests/HAfullNetPartition/HAfullNetPartition.py
@@ -2537,7 +2537,7 @@ activeIps = [] currentResult = main.FALSE for node in current: - if node['state'] == 'ACTIVE': + if node['state'] == 'READY': activeIps.append( node['ip'] ) activeIps.sort() if ips == activeIps: