From 96dfcb9d4c6b3a0d5acd09b426301942d2e54e4c Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sun, 4 Jan 2026 14:09:42 -0500 Subject: [PATCH] Add a "*" to the queues handled by the solid queue worker pool Specifically this is to make sure all queues are managed, like the one we use for incineration in the fizzy-saas engine. --- config/queue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/queue.yml b/config/queue.yml index 3f5615fa8..722da40b1 100644 --- a/config/queue.yml +++ b/config/queue.yml @@ -3,7 +3,7 @@ default: &default - polling_interval: 1 batch_size: 500 workers: - - queues: [ "default", "solid_queue_recurring", "backend", "webhooks" ] + - queues: [ "default", "solid_queue_recurring", "backend", "webhooks", "*" ] threads: 3 processes: <%= Integer(ENV.fetch("JOB_CONCURRENCY") { Concurrent.physical_processor_count }) %> polling_interval: 0.1