Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A zombie process occurs when using https ping on a URL caused by busybox wget #162

Closed
qianlongzt opened this issue Sep 1, 2024 · 1 comment · Fixed by #165
Closed

A zombie process occurs when using https ping on a URL caused by busybox wget #162

qianlongzt opened this issue Sep 1, 2024 · 1 comment · Fixed by #165
Labels
bug Something isn't working type: notification

Comments

@qianlongzt
Copy link

/data $ ps -o pid,ppid,pgid,user,stat,comm
PID   PPID  PGID  USER     STAT COMMAND
    1     0     1 1000     S    supercronic
   51     0    51 1000     S    sh
   57    51    57 1000     R    ps
/data $ wget https://google.com -o /dev/null -q
/data $ ps -o pid,ppid,pgid,user,stat,comm
PID   PPID  PGID  USER     STAT COMMAND
    1     0     1 1000     S    supercronic
   51     0    51 1000     S    sh
   59     1    58 1000     Z    ssl_client
   60     1    58 1000     Z    ssl_client
   61    51    61 1000     R    ps

spinnaker/spinnaker#4479
qdm12/gluetun#1494 (comment)

@ttionya
Copy link
Owner

ttionya commented Sep 3, 2024

Thank you for reporting the error and for the PR.

Initially, BusyBox's wget was used because it is built into Alpine and does not take up additional space. Compared to adding a wget dependency, I prefer to add curl and replace wget with curl. Curl provides comprehensive functionality and may be used in PR #161.

I will fix this issue along with PR #161, so I will close your PR for now.

Thanks again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working type: notification
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants