Skip to content

Commit

Permalink
Merge pull request #1364 from mskanth972/efs-proxy-PIDs_issue
Browse files Browse the repository at this point in the history
Fix efs-proxy Zombie processes
  • Loading branch information
k8s-ci-robot committed Jun 6, 2024
2 parents 640482e + f572aed commit 227730e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/driver/reaper.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (r *reaper) stop() {
}

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

0 comments on commit 227730e

Please sign in to comment.