diff options
author | redmatrix <git@macgirvin.com> | 2016-05-19 20:36:32 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-19 20:36:32 -0700 |
commit | 9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67 (patch) | |
tree | 0733251872dc2f850ea0a6afc6454848a211b21f /Zotlabs/Daemon/Ratenotif.php | |
parent | 5b2474238eb0d257db14b0668ef25eab92e53fea (diff) | |
download | volse-hubzilla-9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67.tar.gz volse-hubzilla-9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67.tar.bz2 volse-hubzilla-9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67.zip |
daemon master: create some compatibility code
Diffstat (limited to 'Zotlabs/Daemon/Ratenotif.php')
-rw-r--r-- | Zotlabs/Daemon/Ratenotif.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Ratenotif.php b/Zotlabs/Daemon/Ratenotif.php index fd2200dc9..a404273e2 100644 --- a/Zotlabs/Daemon/Ratenotif.php +++ b/Zotlabs/Daemon/Ratenotif.php @@ -92,7 +92,7 @@ class Ratenotif { $deliver[] = $hash; if(count($deliver) >= $deliveries_per_process) { - proc_run('php','include/deliver.php',$deliver); + Master::Summon(array('Deliver',$deliver)); $deliver = array(); if($interval) @time_sleep_until(microtime(true) + (float) $interval); @@ -102,7 +102,7 @@ class Ratenotif { // catch any stragglers if(count($deliver)) { - proc_run('php','include/deliver.php',$deliver); + Master::Summon(array('Deliver',$deliver)); } } } |