From 71474cd870b286f2aa0b5b20b1fa5f7a5ece83ce Mon Sep 17 00:00:00 2001 From: Brian Johnson Date: Tue, 21 Aug 2018 13:31:19 -0500 Subject: [PATCH] Fix error from change to support over 21 nodes. GH #4973 --- tests/Cluster.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/Cluster.py b/tests/Cluster.py index ee07cd6b0..27f9913de 100644 --- a/tests/Cluster.py +++ b/tests/Cluster.py @@ -812,6 +812,9 @@ class Cluster(object): Ensure nodes are inter-connected prior to this call. One way to validate this will be to check if every node has block 1.""" Utils.Print("Starting cluster bootstrap.") + if totalProducers is None: + totalProducers=totalNodes + biosNode=Node(biosHost, biosPort) if not biosNode.checkPulse(): Utils.Print("ERROR: Bios node doesn't appear to be running...") -- GitLab