From d984f6daecd038479c5de859e21eb98b227bad8a Mon Sep 17 00:00:00 2001 From: Benjamin Kiah Stroud <32469930+bkiahstroud@users.noreply.github.com> Date: Tue, 20 Feb 2024 14:53:56 -0800 Subject: [PATCH] fix good_job command in workers --- bin/worker | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/worker b/bin/worker index a81d5cca..43bfebbe 100755 --- a/bin/worker +++ b/bin/worker @@ -10,7 +10,7 @@ else end if ENV['AUX_WORKER'] - exec "echo $DATABASE_URL && bundle exec good_job start --queues=*" + exec "echo $DATABASE_URL && bundle exec good_job --queues='*'" else - exec "echo $DATABASE_URL && bundle exec good_job start --queues=-auxiliary" + exec "echo $DATABASE_URL && bundle exec good_job --queues='-auxiliary'" end