Run solid_queue in development and puma
All checks were successful
Ruby CI / test (pull_request) Successful in 27s

This commit is contained in:
Andrew Tomaka 2024-07-26 21:31:51 -04:00
parent b54ba0a8c4
commit 8b15743d64
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
2 changed files with 3 additions and 0 deletions

View file

@ -50,6 +50,8 @@ Rails.application.configure do
# Highlight code that triggered database queries in logs.
config.active_record.verbose_query_logs = true
# Use a real queuing backend for Active Job (and separate queues per environment).
config.active_job.queue_adapter = :solid_queue
# Highlight code that enqueued background job in logs.
config.active_job.verbose_enqueue_logs = true

View file

@ -49,6 +49,7 @@ port ENV.fetch("PORT", 3000)
# Allow puma to be restarted by `bin/rails restart` command.
plugin :tmp_restart
plugin :solid_queue
# Only use a pidfile when requested
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]