Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
explicitly pass log targets
Browse files Browse the repository at this point in the history
  • Loading branch information
ordian committed Oct 9, 2022
1 parent f35778e commit 29d8b57
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions zombienet_tests/0002-pov_recovery.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[relaychain]
default_image = "{{RELAY_IMAGE}}"
default_command = "polkadot"
default_args = [ "-lcumulus-pov-recovery=debug,parachain=debug" ]

chain = "rococo-local"

Expand All @@ -13,11 +12,13 @@ group_rotation_frequency = 100 # 10 mins
[[relaychain.nodes]]
name = "ferdie" # bootnode
validator = true
args = ["-lparachain::availability-distribution=trace"]

[[relaychain.node_groups]]
name = "validator"
count = 6
args = ["--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"]
args = ["-lparachain::availability-distribution=trace", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"]
default_args = [ "-lcumulus-pov-recovery=debug,parachain=debug" ]

[[parachains]]
id = 2000
Expand All @@ -30,7 +31,7 @@ cumulus_based = true
validator = true # collator
image = "{{COL_IMAGE}}"
command = "test-parachain"
args = ["--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"]
args = ["-lparachain::availability-recovery=trace", "--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"]

# run bob as a parachain collator who is the only one producing blocks
# alice and charlie will need to recover the pov blocks through availability recovery
Expand All @@ -47,4 +48,4 @@ cumulus_based = true
validator = false # full node
image = "{{COL_IMAGE}}"
command = "test-parachain"
args = ["--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"]
args = ["-lparachain::availability-recovery=trace", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"]

0 comments on commit 29d8b57

Please sign in to comment.