diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-02 17:31:49 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-02 17:31:49 -0700 |
commit | 0403738981487b7edec20b11a85849254366a202 (patch) | |
tree | 7e713b118be1d581cd4bb2c59d8b23d4b20943ea /Zotlabs/Daemon | |
parent | f23c8e7597b6d96639738d0180e8cb277682ce23 (diff) | |
parent | 8f59b2d3e03b579d62efce9067acbcd32c5ac2b5 (diff) | |
download | volse-hubzilla-0403738981487b7edec20b11a85849254366a202.tar.gz volse-hubzilla-0403738981487b7edec20b11a85849254366a202.tar.bz2 volse-hubzilla-0403738981487b7edec20b11a85849254366a202.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Ratenotif.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Ratenotif.php b/Zotlabs/Daemon/Ratenotif.php index a94b89004..c7bf79854 100644 --- a/Zotlabs/Daemon/Ratenotif.php +++ b/Zotlabs/Daemon/Ratenotif.php @@ -88,6 +88,14 @@ class Ratenotif { 'msg' => json_encode($encoded_item) )); + + $x = q("select count(outq_hash) as total from outq where outq_delivered = 0"); + if(intval($x[0]['total']) > intval(get_config('system','force_queue_threshold',300))) { + logger('immediate delivery deferred.', LOGGER_DEBUG, LOG_INFO); + update_queue_item($hash); + continue; + } + $deliver[] = $hash; if(count($deliver) >= $deliveries_per_process) { |