Closed salmonsteak1 closed 3 weeks ago
Yes, that's right. There's no way to exclude queues from workers. *
means all queues, including SpecificLongRunningJob
. You'd have to explicitly list all queues except for SpecificLongRunningJob
to achieve that result.
Hey, I'm looking to segregate my workers for specific jobs so that long running jobs wouldn't hog up my main set of workers working on the '*' queue. Is that possible? Currently it seems like what I've defined below would cause the set of workers defined with '*' to work on
SpecificLongRunningJob
too: