Tweak cleanup tasks

This commit is contained in:
Thomas Sileo 2019-04-09 08:40:48 +02:00
parent 686d614386
commit cd8662f04d

6
app.py
View file

@ -1390,7 +1390,9 @@ def admin_new():
@login_required @login_required
def admin_notifications(): def admin_notifications():
# Setup the cron for deleting old activities # Setup the cron for deleting old activities
p.push({}, "/task/cleanup", schedule="@every 12h")
# FIXME(tsileo): put back to 12h
p.push({}, "/task/cleanup", schedule="@every 1h")
# Trigger a cleanup if asked # Trigger a cleanup if asked
if request.args.get("cleanup"): if request.args.get("cleanup"):
@ -2847,7 +2849,7 @@ def task_cleanup_part_2():
"meta.keep": False, "meta.keep": False,
"activity.published": {"$lt": d}, "activity.published": {"$lt": d},
} }
): ).limit(5000):
# Delete the cached attachment/ # Delete the cached attachment/
for grid_item in MEDIA_CACHE.fs.find({"remote_id": data["remote_id"]}): for grid_item in MEDIA_CACHE.fs.find({"remote_id": data["remote_id"]}):
MEDIA_CACHE.fs.delete(grid_item._id) MEDIA_CACHE.fs.delete(grid_item._id)