From 842c2ab4511d4feb65f295340137aebf424523a3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 30 Mar 2013 17:44:22 +0400 Subject: [PATCH] tweak daemon2 to run feedbrowser/etc tasks after update randomly, not instead of update --- update_daemon2.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/update_daemon2.php b/update_daemon2.php index 2933ccef..450b9339 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -244,15 +244,15 @@ } // Call to the feed batch update function - // or regenerate feedbrowser cache + // and maybe regenerate feedbrowser cache $nf = 0; - if (rand(0,100) > 30) { - _debug("Waiting before update.."); - sleep(rand(5,15)); - $nf = update_daemon_common($link); - } else { + _debug("Waiting before update.."); + sleep(rand(5,15)); + $nf = update_daemon_common($link); + + if (rand(0,100) > 50) { $count = update_feedbrowser_cache($link); _debug("Feedbrowser updated, $count feeds processed."); -- 2.39.5