we don't look at err

This commit is contained in:
Ted Unangst 2022-03-14 22:02:13 -04:00
parent 72e2424606
commit f8c5667a0e
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ func runBackendServer() {
if err != nil {
elog.Panicf("can't exec backend: %s", err)
}
err = proc.Wait()
proc.Wait()
elog.Printf("lost the backend: %s", err)
w.Close()
}