mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-16 02:18:22 -07:00
Don't report signal: killed errors in serviceRPC (#18850)
Fix #18849 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
dc988eae0c
commit
704bdf89a2
@ -495,7 +495,9 @@ func serviceRPC(ctx gocontext.Context, h serviceHandler, service string) {
|
||||
Stdin: reqBody,
|
||||
Stderr: &stderr,
|
||||
}); err != nil {
|
||||
log.Error("Fail to serve RPC(%s) in %s: %v - %s", service, h.dir, err, stderr.String())
|
||||
if err.Error() != "signal: killed" {
|
||||
log.Error("Fail to serve RPC(%s) in %s: %v - %s", service, h.dir, err, stderr.String())
|
||||
}
|
||||
return
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user