Skip to content

Commit 227730e

Browse files
authored
Merge pull request #1364 from mskanth972/efs-proxy-PIDs_issue
Fix efs-proxy Zombie processes
2 parents 640482e + f572aed commit 227730e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/driver/reaper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (r *reaper) stop() {
8585
}
8686

8787
func waitIfZombieStunnel(p ps.Process) bool {
88-
if !strings.Contains(p.Executable(), "stunnel") {
88+
if !strings.Contains(p.Executable(), "stunnel") && !strings.Contains(p.Executable(), "efs-proxy") {
8989
return false
9090
}
9191
data, err := ioutil.ReadFile(fmt.Sprintf("/proc/%v/status", p.Pid()))

0 commit comments

Comments
 (0)