From 70275c9f04a8bb1d8cc3fd4e47646dd0bb0eb048 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 18 Apr 2025 16:30:30 +0200 Subject: [PATCH] Yank Solid Queue from development It clogs up the test log and occasionally causes the puma to hang when you want to quit. --- bin/dev | 2 +- config/environments/development.rb | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/bin/dev b/bin/dev index 1b7f220b2..f8d3f3df9 100755 --- a/bin/dev +++ b/bin/dev @@ -2,4 +2,4 @@ echo "Starting Fizzy on http://development-tenant.fizzy.localhost:3006" -SOLID_QUEUE_IN_PUMA=true exec ./bin/rails server -p 3006 +exec ./bin/rails server -p 3006 diff --git a/config/environments/development.rb b/config/environments/development.rb index ac555fd16..7eba115d0 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -62,10 +62,6 @@ Rails.application.configure do # Highlight code that enqueued background job in logs. config.active_job.verbose_enqueue_logs = true - # Use Solid Queue in Development. - config.active_job.queue_adapter = :solid_queue - config.solid_queue.connects_to = { database: { writing: :queue } } - # Raises error for missing translations. # config.i18n.raise_on_missing_translations = true