mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-03 00:40:25 +02:00
envoy: exit if envoy exits (#2240)
This commit is contained in:
parent
1cf0c701ba
commit
ef62d9bb31
7 changed files with 131 additions and 43 deletions
14
internal/envoy/envoy_darwin.go
Normal file
14
internal/envoy/envoy_darwin.go
Normal 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) {}
|
Loading…
Add table
Add a link
Reference in a new issue