-
Notifications
You must be signed in to change notification settings - Fork 40.7k
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
launch.script can't stop app in supervisor #5273
Comments
I don't think we want to make the proposed change. Using Why do you need to use |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue. |
org/springframework/boot/loader/tools/launch.script
supervisor need to get APP PID that is running, but "sh spring-boot-app-exec.jar run" get two process, one is shell process, another is spring-boot-app process, but supervisor got a shell process, when executing stop command in supervisor, can't stop spring-boot-app process.
supervisor *.conf
command= sh spring-boot-app-exec.jar run
I add "exec" to "org/springframework/boot/loader/tools/launch.script" before "$command" , it works!
$command
toexec $command
The text was updated successfully, but these errors were encountered: