diff options
author | Mario <mario@mariovavti.com> | 2023-02-01 10:02:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-02-01 10:02:35 +0000 |
commit | 9c3660e2f62a155b700ef04392768b0a2c3bc998 (patch) | |
tree | 20c11e3ce5358c0668d4b9f73a376ab03eaa9a2d /Zotlabs | |
parent | 4bcacf858ba2903690e9b40c1428c88be197092a (diff) | |
download | volse-hubzilla-9c3660e2f62a155b700ef04392768b0a2c3bc998.tar.gz volse-hubzilla-9c3660e2f62a155b700ef04392768b0a2c3bc998.tar.bz2 volse-hubzilla-9c3660e2f62a155b700ef04392768b0a2c3bc998.zip |
remove superfluous semicolon
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/QueueWorker.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/QueueWorker.php b/Zotlabs/Lib/QueueWorker.php index fd2ebd7e1..349ccb68f 100644 --- a/Zotlabs/Lib/QueueWorker.php +++ b/Zotlabs/Lib/QueueWorker.php @@ -178,7 +178,7 @@ class QueueWorker { // This is probably the better solution but is not supported by mariadb < 10.6 which is still used a lot. // $work = dbq("SELECT workerq_id FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE SKIP LOCKED;"); - $work = dbq("SELECT workerq_id, workerq_cmd FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE;"); + $work = dbq("SELECT workerq_id, workerq_cmd FROM workerq WHERE workerq_reservationid IS NULL ORDER BY workerq_priority DESC, workerq_id ASC LIMIT 1 FOR UPDATE"); if (!$work) { self::qcommit(); |