mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-17 13:06:14 +02:00
lntest: skip killing dead process
This commit is contained in:
parent
cdc6f63f17
commit
4bbb4ed978
1 changed files with 8 additions and 1 deletions
|
|
@ -732,7 +732,14 @@ func (hn *HarnessNode) Stop() error {
|
|||
// manually.
|
||||
hn.printErrf("found nil RPC clients")
|
||||
if err := hn.Kill(); err != nil {
|
||||
return fmt.Errorf("killing process got: %v", err)
|
||||
// Skip the error if the process is already dead.
|
||||
if !strings.Contains(
|
||||
err.Error(), "process already finished",
|
||||
) {
|
||||
|
||||
return fmt.Errorf("killing process got: %w",
|
||||
err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue