Update selection of node with pending deletion status insteed of simple first node
This commit is contained in:
parent
239b60ae6f
commit
51b872c140
@ -136,7 +136,15 @@ class TestNode(BaseNodeTestCase):
|
||||
nailgun_nodes = self.update_nodes(cluster_id, nodes_dict, False, True)
|
||||
task = self.deploy_cluster(cluster_id)
|
||||
self.assertTaskSuccess(task)
|
||||
wait(lambda: self.is_node_discovered(nailgun_nodes[0]), timeout=3 * 60)
|
||||
nodes = filter(lambda x: x["pending_deletion"] is True, nailgun_nodes)
|
||||
self.assertTrue(
|
||||
len(nodes) == 1,
|
||||
"Verify 1 node has pending deletion status"
|
||||
)
|
||||
wait(lambda: self.is_node_discovered(
|
||||
nodes[0]),
|
||||
timeout=3 * 60
|
||||
)
|
||||
self.assertOSTFRunSuccess(cluster_id, 12, 12)
|
||||
|
||||
@snapshot_errors
|
||||
|
Loading…
Reference in New Issue
Block a user