We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9134983 commit f4735c9Copy full SHA for f4735c9
1 file changed
lib/private/BackgroundJob/JobList.php
@@ -212,7 +212,7 @@ public function getNext(string $jobClass = null) {
212
213
if ($count === 0) {
214
// Background job already executed elsewhere, try again.
215
- return $this->getNext();
+ return $this->getNext($jobClass);
216
}
217
$job = $this->buildJob($row);
218
@@ -226,7 +226,7 @@ public function getNext(string $jobClass = null) {
226
$reset->execute();
227
228
// Background job from disabled app, try again.
229
230
231
232
return $job;
0 commit comments