Skip to content

Commit

Permalink
Merge pull request #1507 from dorianvp/fix-lightwalletd-hang
Browse files Browse the repository at this point in the history
Kill lightwalletd instead of waiting for it
  • Loading branch information
zancas authored Nov 12, 2024
2 parents 30e3ffe + eb724a5 commit e08b9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zingolib/src/testutils/regtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Drop for ChildProcessHandler {
} else {
log::debug!("zcashd successfully shut down")
};
if let Err(e) = self.lightwalletd.wait() {
if let Err(e) = self.lightwalletd.kill() {
log::warn!("lightwalletd cannot be awaited: {e}")
} else {
log::debug!("lightwalletd successfully shut down")
Expand Down

0 comments on commit e08b9f7

Please sign in to comment.