Skip to content

Commit 0a2d1d6

Browse files
committed
Fix queue review follow-up
1 parent e84f370 commit 0a2d1d6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/Model/Table/QueueProcessesTable.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -236,12 +236,12 @@ public function status(): array {
236236
$timeout = Config::defaultworkertimeout();
237237
$thresholdTime = (new DateTime())->subSeconds($timeout);
238238

239-
$results = $this->find()
240-
->where(['modified >' => $thresholdTime])
241-
->orderByDesc('modified')
242-
->enableHydration(false)
243-
->all()
244-
->toArray();
239+
$results = $this->find()
240+
->where(['modified >' => $thresholdTime])
241+
->orderByDesc('modified')
242+
->enableHydration(false)
243+
->all()
244+
->toArray();
245245

246246
if (!$results) {
247247
return [];

0 commit comments

Comments
 (0)