<@ULVA73B9P> For a work pool, how would I unpause ...
# ask-marvin
d
@Marvin For a work pool, how would I unpause a work queue?
m
thought for 24.3 seconds
To unpause (resume) a work queue, you can use the following command:
Copy code
bash
prefect work-queue resume "your-queue-name" --pool "your-pool-name"
Replace: -
your-queue-name
with the name of your work queue -
your-pool-name
with the name of your work pool For example, if you have a work queue named "default" in a work pool named "my-pool", you would run:
Copy code
bash
prefect work-queue resume "default" --pool "my-pool"
You can also list all work queues to see their current status using:
Copy code
bash
prefect work-queue ls
This will show you which queues are paused and which are active.