Browse Source

Revert "ci: tweak e2e configuration (#7400)" (#7404)

This reverts commit b057740bd3.
pull/7409/head
Sam Kleinman 3 years ago
committed by GitHub
parent
commit
26d421b8f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 4 deletions
  1. +14
    -4
      test/e2e/networks/ci.toml

+ 14
- 4
test/e2e/networks/ci.toml View File

@ -16,14 +16,15 @@ validator03 = 30
validator04 = 40 validator04 = 40
[validator_update.1010] [validator_update.1010]
validator04 = 50
validator05 = 50
# validator03 gets killed and validator05 has lots of perturbations, so weight them low. # validator03 gets killed and validator05 has lots of perturbations, so weight them low.
[validator_update.1020] [validator_update.1020]
validator01 = 100 validator01 = 100
validator02 = 100 validator02 = 100
validator03 = 50 validator03 = 50
validator04 = 50
validator04 = 100
validator05 = 50
[node.seed01] [node.seed01]
mode = "seed" mode = "seed"
@ -37,7 +38,7 @@ block_sync = "v0"
[node.validator02] [node.validator02]
abci_protocol = "tcp" abci_protocol = "tcp"
database = "rocksdb"
database = "boltdb"
persist_interval = 0 persist_interval = 0
perturb = ["restart"] perturb = ["restart"]
privval_protocol = "tcp" privval_protocol = "tcp"
@ -55,19 +56,28 @@ block_sync = "v0"
retain_blocks = 10 retain_blocks = 10
[node.validator04] [node.validator04]
abci_protocol = "builtin"
snapshot_interval = 5
database = "rocksdb"
persistent_peers = ["validator01"]
perturb = ["pause"]
block_sync = "v0"
[node.validator05]
database = "cleveldb" database = "cleveldb"
block_sync = "v0" block_sync = "v0"
state_sync = "p2p" state_sync = "p2p"
seeds = ["seed01"] seeds = ["seed01"]
start_at = 1005 # Becomes part of the validator set at 1010 start_at = 1005 # Becomes part of the validator set at 1010
abci_protocol = "grpc" abci_protocol = "grpc"
perturb = ["pause"]
perturb = ["pause", "disconnect", "restart"]
privval_protocol = "tcp" privval_protocol = "tcp"
[node.full01] [node.full01]
mode = "full" mode = "full"
start_at = 1010 start_at = 1010
block_sync = "v0" block_sync = "v0"
persistent_peers = ["validator01", "validator02", "validator03", "validator04"]
perturb = ["restart"] perturb = ["restart"]
retain_blocks = 10 retain_blocks = 10
state_sync = "rpc" state_sync = "rpc"


Loading…
Cancel
Save