diff options
author | Mario <mario@mariovavti.com> | 2022-01-30 15:33:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-01-30 15:33:57 +0000 |
commit | d619192b22484fa21700b5c6d2ce5d029897ee76 (patch) | |
tree | 2d02cae066ebbd1377590c0f3b5720d3924710af /Zotlabs/Module | |
parent | 46eff1c937af05664c5e62e86909e8b4709966f9 (diff) | |
download | volse-hubzilla-d619192b22484fa21700b5c6d2ce5d029897ee76.tar.gz volse-hubzilla-d619192b22484fa21700b5c6d2ce5d029897ee76.tar.bz2 volse-hubzilla-d619192b22484fa21700b5c6d2ce5d029897ee76.zip |
attach iconfig to the activity and adjust ap raw message retrieval to handle both cases. also add a possibility to manually redeliver single hubs for debuging
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Admin/Queue.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Zotlabs/Module/Admin/Queue.php b/Zotlabs/Module/Admin/Queue.php index baa50591f..8a843083b 100644 --- a/Zotlabs/Module/Admin/Queue.php +++ b/Zotlabs/Module/Admin/Queue.php @@ -23,7 +23,18 @@ class Queue { LibQueue::remove_by_posturl($_REQUEST['emptyhub']); } - $r = q("select count(outq_posturl) as total, max(outq_priority) as priority, outq_posturl from outq + if($_REQUEST['deliverhub']) { + + $hubq = q("SELECT * FROM outq WHERE outq_posturl = '%s'", + dbesc($_REQUEST['deliverhub']) + ); + + foreach ($hubq as $q) { + LibQueue::deliver($q, true); + } + } + + $r = dbq("select count(outq_posturl) as total, max(outq_priority) as priority, outq_posturl from outq where outq_delivered = 0 group by outq_posturl order by total desc"); for($x = 0; $x < count($r); $x ++) { @@ -37,6 +48,7 @@ class Queue { '$priority' => t('Priority'), '$desturl' => t('Destination URL'), '$nukehub' => t('Mark hub permanently offline'), + '$deliverhub' => t('Retry delivery to this hub'), '$empty' => t('Empty queue for this hub'), '$lastconn' => t('Last known contact'), '$hasentries' => ((count($r)) ? true : false), |