Skip to content

Commit

Permalink
kill
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-malene committed Feb 15, 2024
1 parent 2c89136 commit 46f8d40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration/eth2network/eth2_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 46f8d40

Please sign in to comment.