Skip to content

Commit

Permalink
Fix missing namespace when processing scheduled jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
pprkut committed Apr 28, 2024
1 parent a240bcb commit 05f83d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Worker/SchedulerWorker.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function enqueueDelayedItemsForTimestamp($timestamp)
));

$payload = array_merge(array($item['queue'], $item['class']), $item['args']);
call_user_func_array('Resque::enqueue', $payload);
call_user_func_array('Resque\Resque::enqueue', $payload);
}
}

Expand Down

0 comments on commit 05f83d4

Please sign in to comment.