diff --git a/src/Illuminate/Queue/Console/WorkCommand.php b/src/Illuminate/Queue/Console/WorkCommand.php index cfa038b1dd6c..feb7f99fb765 100644 --- a/src/Illuminate/Queue/Console/WorkCommand.php +++ b/src/Illuminate/Queue/Console/WorkCommand.php @@ -298,7 +298,7 @@ protected function resolveRunTime() { $runTime = number_format((microtime(true) - $this->latestStartedAt) * 1000, 2); - if ($runTime > 1) { + if ($runTime > 1000) { return CarbonInterval::milliseconds($runTime)->cascade()->forHumans(short: true); }