From 0c1ceee81e3bf4335e15094c16fc0cf5ed47f5d2 Mon Sep 17 00:00:00 2001 From: Dieter Holvoet Date: Mon, 6 May 2024 20:32:23 +0200 Subject: [PATCH] Finish the progress bar --- src/Commands/core/QueueCommands.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Commands/core/QueueCommands.php b/src/Commands/core/QueueCommands.php index 729e082890..463cb19482 100644 --- a/src/Commands/core/QueueCommands.php +++ b/src/Commands/core/QueueCommands.php @@ -134,6 +134,7 @@ public function run(string $name, $options = ['time-limit' => self::REQ, 'items- $remaining = $end - time(); } $elapsed = microtime(true) - $start; + $this->io()->progressFinish(); $this->logger()->success(dt('Processed @count items from the @name queue in @elapsed sec.', ['@count' => $count, '@name' => $name, '@elapsed' => round($elapsed, 2)])); }