after looking at documentation I couldn't find any...
# general
b
after looking at documentation I couldn't find anything that shows how to stop pantsd after you are done with your builds. I'm on a CI/CD machine and want to make sure that it is shutdown after the builds are complete, but I'm unsure of how to do this. Since it's running multiple builds via pants a
pkill pantsd
won't work
1
c
As long as the workspace is not shared with those other runners (in which case they’d be sharing the pantsd as well) you can remove
rm -rf /path/to/project/.pids
to kill the daemon.
b
👍