Skip to content

Commit

Permalink
GH-1054 Use default unless total nodes exceeds 21
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Dec 17, 2024
1 parent 6fc63a3 commit 99ca237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/PerformanceHarness/performance_test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def launchCluster(self):
return self.cluster.launch(
pnodes=self.clusterConfig._pNodes,
totalNodes=self.clusterConfig._totalNodes,
totalProducers=self.clusterConfig._pNodes,
totalProducers=self.clusterConfig._pNodes if self.clusterConfig._totalNodes > 21 else None,
genesisPath=self.clusterConfig.genesisPath,
maximumP2pPerHost=self.clusterConfig.maximumP2pPerHost,
maximumClients=self.clusterConfig.maximumClients,
Expand Down

0 comments on commit 99ca237

Please sign in to comment.