summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-24 13:43:40 +0400
committerAndrew Dolgov <[email protected]>2013-04-24 13:43:40 +0400
commitfce451a4f796e8ccafc9aec692cb8821c085fc97 (patch)
treea1fd20f3cfe662751770ed9dc2991bd6fc6c9348 /update.php
parent81c206634581595680ba784494f619ea977785f3 (diff)
fix updating for pgsql
increase default batch size remove random check between feedbrowser or update task executing
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php21
1 files changed, 7 insertions, 14 deletions
diff --git a/update.php b/update.php
index c301083f9..ce354bbae 100755
--- a/update.php
+++ b/update.php
@@ -184,24 +184,17 @@
_debug("warning: unable to create stampfile\n");
}
- // Call to the feed batch update function
- // or regenerate feedbrowser cache
-
- if (rand(0,100) > 30) {
- update_daemon_common();
- } else {
- $count = update_feedbrowser_cache();
- _debug("Feedbrowser updated, $count feeds processed.");
-
- purge_orphans( true);
+ update_daemon_common();
- $rc = cleanup_tags( 14, 50000);
+ $count = update_feedbrowser_cache();
+ _debug("Feedbrowser updated, $count feeds processed.");
- _debug("Cleaned $rc cached tags.");
+ purge_orphans( true);
- PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op);
- }
+ $rc = cleanup_tags( 14, 50000);
+ _debug("Cleaned $rc cached tags.");
+ PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op);
}
if (isset($options["cleanup-tags"])) {