Skip to content

Commit

Permalink
GH-1054 Allow over 22 validation nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Dec 16, 2024
1 parent f542552 commit 6fc63a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/PerformanceHarness/performance_test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def __init__(self, testHelperConfig: TestHelperConfig=TestHelperConfig(), cluste
self.nodeosLogPath = self.nodeosLogDir/f"node_{str(self.validationNodeId).zfill(2)}"/"stderr.txt"

# Setup cluster and its wallet manager
self.walletMgr=WalletMgr(True)
self.walletMgr=WalletMgr(True, port=7899)
self.cluster=Cluster(loggingLevel=self.clusterConfig.loggingLevel, loggingLevelDict=self.clusterConfig.loggingDict,
nodeosVers=self.clusterConfig.nodeosVers,unshared=self.testHelperConfig.unshared,
keepRunning=self.clusterConfig.dontKill, keepLogs=self.clusterConfig.keepLogs)
Expand Down Expand Up @@ -339,6 +339,7 @@ def launchCluster(self):
return self.cluster.launch(
pnodes=self.clusterConfig._pNodes,
totalNodes=self.clusterConfig._totalNodes,
totalProducers=self.clusterConfig._pNodes,
genesisPath=self.clusterConfig.genesisPath,
maximumP2pPerHost=self.clusterConfig.maximumP2pPerHost,
maximumClients=self.clusterConfig.maximumClients,
Expand Down

0 comments on commit 6fc63a3

Please sign in to comment.