envoy: exit if envoy exits (#2240)

This commit is contained in:
Caleb Doxsey 2021-05-27 15:11:12 -06:00 committed by GitHub
parent 1cf0c701ba
commit ef62d9bb31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 131 additions and 43 deletions

View file

@ -0,0 +1,14 @@
// +build darwin
package envoy
import (
"context"
"syscall"
)
var sysProcAttr = &syscall.SysProcAttr{
Setpgid: true,
}
func (srv *Server) runProcessCollector(ctx context.Context) {}