diff options
author | Mario <mario@mariovavti.com> | 2023-04-08 20:25:31 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-04-08 20:25:31 +0000 |
commit | 1538107ae45f9b7c09d377083cf969ca81d373c0 (patch) | |
tree | 2a2bd385ae70b0f0e51748856ad936de03a61446 /Zotlabs/Module/Admin/Queueworker.php | |
parent | 9b93dc51373878d7a0cbce3053e4308e7715b9c1 (diff) | |
download | volse-hubzilla-1538107ae45f9b7c09d377083cf969ca81d373c0.tar.gz volse-hubzilla-1538107ae45f9b7c09d377083cf969ca81d373c0.tar.bz2 volse-hubzilla-1538107ae45f9b7c09d377083cf969ca81d373c0.zip |
minor queueworker fixes
Diffstat (limited to 'Zotlabs/Module/Admin/Queueworker.php')
-rw-r--r-- | Zotlabs/Module/Admin/Queueworker.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Admin/Queueworker.php b/Zotlabs/Module/Admin/Queueworker.php index 45a09bf04..a4f38d07c 100644 --- a/Zotlabs/Module/Admin/Queueworker.php +++ b/Zotlabs/Module/Admin/Queueworker.php @@ -41,7 +41,7 @@ class Queueworker extends Controller { $content .= "<H4>There are " . $r[0]['total'] . " queue items to be processed.</H4>"; - $r = dbq("select count(distinct workerq_reservationid) as qworkers from workerq where workerq_reservationid is not null"); + $r = dbq("select count(*) as qworkers from workerq where workerq_reservationid is not null"); $content .= "<H4>Active workers: " . $r[0]['qworkers'] . "</H4>"; |