]> git.wh0rd.org - tt-rss.git/commitdiff
do not automatically call cleanup_tags() in housekeeping tasks
authorAndrew Dolgov <noreply@fakecake.org>
Mon, 4 Jan 2016 07:42:24 +0000 (10:42 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Mon, 4 Jan 2016 07:42:24 +0000 (10:42 +0300)
classes/rpc.php
include/rssfuncs.php

index 1c733ffca927b730f698b547e0ee42128a7f697a..d8f2088e13d902614031c3e2e2e55191dfe08561 100755 (executable)
@@ -550,7 +550,7 @@ class RPC extends Handler_Protected {
 
                // Purge orphans and cleanup tags
                purge_orphans();
-               cleanup_tags(14, 50000);
+               //cleanup_tags(14, 50000);
 
                if ($num_updated > 0) {
                        print json_encode(array("message" => "UPDATE_COUNTERS",
index 380960bd83383dca56f85cd7bbbbfd8e683051a9..f13ac36ddfedef48ca86e3bae8c3a159bec552c0 100755 (executable)
 
                purge_orphans( true);
                cleanup_counters_cache($debug);
-               $rc = cleanup_tags( 14, 50000);
 
-               _debug("Cleaned $rc cached tags.");
+               //$rc = cleanup_tags( 14, 50000);
+               //_debug("Cleaned $rc cached tags.");
 
                PluginHost::getInstance()->run_hooks(PluginHost::HOOK_HOUSE_KEEPING, "hook_house_keeping", "");