Sorry if I'm missing something obvious - how do yo...
# prefect-community
t
Sorry if I'm missing something obvious - how do you cancel a running agent? Can't see it in docs, -h or ui
I guess these are the agents in task manager but is there a more elegant way to exit?
a
Agent is a local process. You could list all processes using ps, and then kill it using kill -9 PID:
on Windows, you can probably do the same using Get-Process and then Stop-Process -ID PID -Force
🙌 1