Answer
As described above — create all queues explicitly at startup via `createQueue()` before any `work()`/`send()` calls. Maintain an `ALL_QUEUES` array as the single source of truth and iterate it at startup. `createQueue()` is idempotent so it's safe to run on every deploy.
6be6333c-f329-4142-877a-c31b8157c07b
As described above — create all queues explicitly at startup via createQueue() before any work()/send() calls. Maintain an ALL_QUEUES array as the single source of truth and iterate it at startup. createQueue() is idempotent so it's safe to run on every deploy.