We’ll touch on this when we return, but one thing ...
# pacc-clearcover-june-12-2023
e
We’ll touch on this when we return, but one thing to keep in mind when running flows and creating deployments is which work pool you’re using. If you haven’t already, you should create a process work pool. You can do this automatically when you start a worker:
Copy code
prefect worker start --name default --type process
Then when you create deployments, make sure to reference the pool. For example,
Copy code
prefect deployment build ... --pool default ...
🙌 1