Commit 99242d6
authored
fix: fix failing persistence test (ethereum#554)
fixed the failing persistence test by re-ordering the clients list.
The test fails because initialization of all EL clients takes longer
than the initial genesis delay.
Due to this, lighhouse returns an unhealty result for its health check
as it's post-genesis and not following a chain / has no peers.
The kurtosis package waits for a healthy result, which never occurs as
all other BNs & VCs are missing at that point.
The fix proposed in this PR is a workaround as it moves the lighthouse
node further down to ensure it can connect to other nodes initialized
before.
There is an alternative approach to fix this issue:
```
network_params:
genesis_delay: 300
```
which ensures all clients are properly initialized before the network
starts.1 parent f69c4a7 commit 99242d6
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
3 | | - | |
4 | 2 | | |
5 | 3 | | |
6 | 4 | | |
| |||
11 | 9 | | |
12 | 10 | | |
13 | 11 | | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
0 commit comments