Browse Source

e2e: reduce number of stateless nodes in test networks (#7010)

pull/7013/head
Sam Kleinman 3 years ago
committed by GitHub
parent
commit
6be36613c9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/e2e/generator/generate.go

+ 1
- 1
test/e2e/generator/generate.go View File

@ -161,7 +161,7 @@ func generateTestnet(r *rand.Rand, opt map[string]interface{}) (e2e.Manifest, er
numValidators = 4
case "large":
// FIXME Networks are kept small since large ones use too much CPU.
numSeeds = r.Intn(2)
numSeeds = r.Intn(1)
numLightClients = r.Intn(2)
numValidators = 4 + r.Intn(4)
numFulls = r.Intn(4)


Loading…
Cancel
Save