We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Replace kill -s SIGKILL of petal processes with:
kill -s SIGKILL
SIGINT
SIGTERM
SIGKILL
The text was updated successfully, but these errors were encountered:
Note: SIGINT is windows whereas SIGTERM is unix.
If if just want timeout on unix then, --timeout flag exists on /usr/bin/kill (not on shell kill).
--timeout
/usr/bin/kill
You can write it as,
/usr/bin/kill --timeout 1000 TERM --signal QUIT ${PID_TO_KILL}
Sorry, something went wrong.
nsosio
Successfully merging a pull request may close this issue.
Replace
kill -s SIGKILL
of petal processes with:SIGINT
first with a timeoutSIGTERM
first with a timeoutSIGKILL
The text was updated successfully, but these errors were encountered: