From 5fd7b7724bc6c0e0c77ad40ce4580ff263249bb5 Mon Sep 17 00:00:00 2001 From: Matei Stanca Date: Sat, 15 Jul 2023 16:45:00 -0400 Subject: [PATCH] Issue #3: Switch image style warmer to queue:process, shows remaining #. --- .do/run-background-tasks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.do/run-background-tasks.php b/.do/run-background-tasks.php index 3fbe6405..aa6d12d4 100644 --- a/.do/run-background-tasks.php +++ b/.do/run-background-tasks.php @@ -25,7 +25,7 @@ // Every 5 minutes, process jobs from the image style warmer. $loop->addPeriodicTimer(300, function() use ($drush): void { (new WorkerProcess( - $drush . ' queue:run image_style_warmer_pregenerator --verbose' + $drush . ' queue:process image_style_warmer_pregenerator' ))->start(); });