The workerqueue is now using a view as well

This commit is contained in:
Michael 2020-04-24 18:50:36 +00:00
parent 89dcab774d
commit 1c980c5b29
2 changed files with 12 additions and 5 deletions

View file

@ -209,5 +209,14 @@ return [
INNER JOIN `contact` ON `register`.`uid` = `contact`.`uid`
INNER JOIN `user` ON `register`.`uid` = `user`.`uid`"
],
"workerqueue-view" => [
"fields" => [
"pid" => ["process", "pid"],
"priority" => ["workerqueue", "priority"],
],
"query" => "FROM `process`
INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
WHERE NOT `workerqueue`.`done`"
],
];