We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 733251c commit 38499a0Copy full SHA for 38499a0
pkg/binary/envoy/termination.go
@@ -23,6 +23,10 @@ import (
23
24
func (r *Runtime) handleTermination() {
25
if r.cmd.ProcessState != nil {
26
+ if r.cmd.ProcessState.Success() {
27
+ log.Infof("Envoy process (PID=%d) exited successfully", r.cmd.Process.Pid)
28
+ return
29
+ }
30
log.Infof("Envoy process (PID=%d) terminated prematurely", r.cmd.Process.Pid)
31
return
32
}
0 commit comments