From ebe70a41b9bce5b790e7621a60bd15f6c2465d02 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 28 Feb 2016 18:26:08 -0800 Subject: build_sync_packet - no need to sleep after the last sync delivery. --- include/zot.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/zot.php') diff --git a/include/zot.php b/include/zot.php index de841f956..01dd06fda 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2971,6 +2971,8 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { logger('build_sync_packet: packet: ' . print_r($info,true), LOGGER_DATA, LOG_DEBUG); + $total = count($synchubs); + foreach($synchubs as $hub) { $hash = random_string(); $n = zot_build_packet($channel,'notify',$env_recips,$hub['hubloc_sitekey'],$hash); @@ -2984,7 +2986,9 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { )); proc_run('php', 'include/deliver.php', $hash); - if($interval) + $total = $total - 1; + + if($interval && $total) @time_sleep_until(microtime(true) + (float) $interval); } } -- cgit v1.2.3