diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index cffca9ea3d..0fa851df80 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -31,6 +31,10 @@ jobs: # Close specified ports using lsof before testing / local port list compiled from ./integration/constants.go - name: Close Integration Test Ports run: | + killall -9 geth-v1.12.2 + killall -9 beacon-chain-v4.0.6 + killall -9 validator-v4.0.6 + lowest_port=8000 # Lowest starting port highest_port=58000 # Highest port considering the offset additional_ports=(80 81 99) # Additional specific ports diff --git a/integration/eth2network/eth2_network.go b/integration/eth2network/eth2_network.go index 8036f5daa0..3df24cf311 100644 --- a/integration/eth2network/eth2_network.go +++ b/integration/eth2network/eth2_network.go @@ -540,7 +540,7 @@ func (n *Impl) waitForNodeUp(nodeID int, timeout time.Duration) error { return nil } } - fmt.Printf("Geth node error:\n%s", n.gethProcesses[nodeID].Stderr) + fmt.Printf("Geth node error:\n%s\n", n.gethProcesses[nodeID].Stderr) return fmt.Errorf("node not responsive after %s", timeout) }