Commit a8f583cc authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 6b30b4ca
......@@ -70,7 +70,11 @@ func (z *ZEOPySrv) Close() (err error) {
defer xerr.Contextf(&err, "stopzeo %s", z.fs1path)
z.cancel()
return z.pysrv.Wait()
err = z.pysrv.Wait()
if _, ok := err.(*exec.ExitError); ok {
err = nil // ignore exit statue - it is always !0 on kill
}
return err
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment