Skip to content

Commit

Permalink
Merge pull request pkp#8644 from touhidurabir/i8306_patch_main
Browse files Browse the repository at this point in the history
pkp#8306 Patch for zero-length delimited identifier issue
  • Loading branch information
touhidurabir authored Feb 16, 2023
2 parents 591dfcb + 5a73ae1 commit 083438b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/job/repositories/FailedJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function getRedispatchableJobsInQueue(string $queue = null, array $column

return $failedJobs->where(fn($query) => $query
->whereNotNull('payload')
->whereRaw('payload <> ""')
->whereRaw("payload <> ''")
)->get();
}

Expand Down

0 comments on commit 083438b

Please sign in to comment.