Skip to content

Commit

Permalink
Merge pull request #3915 from anoma/mergify/bp/0.44.0/pr-3909
Browse files Browse the repository at this point in the history
test/e2e/ibc: try to killall gaiad before running it (backport #3909)
  • Loading branch information
mergify[bot] authored Oct 11, 2024
2 parents b5168e6 + 97b480f commit 961237f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions crates/tests/src/e2e/ibc_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -988,6 +988,12 @@ fn run_hermes(test: &Test) -> Result<NamadaCmd> {
}

fn run_gaia(test: &Test) -> Result<NamadaCmd> {
// gaiad process is sometimes left lingering causing subsequent runs to fail
std::process::Command::new("pkill")
.args(["-9", "gaiad"])
.output()
.unwrap();

let args = [
"start",
"--pruning",
Expand Down

0 comments on commit 961237f

Please sign in to comment.