fixed the last_reindex interval calculation

pull/12/head
simon 3 years ago
parent 7d60af1491
commit 3c003750a8

@ -353,7 +353,7 @@ def reindex_old_documents():
# check needed last run # check needed last run
now = int(datetime.now().strftime("%s")) now = int(datetime.now().strftime("%s"))
last_reindex = get_message('last_reindex') last_reindex = get_message('last_reindex')
if isinstance(last_reindex, int) and now - last_reindex < 60 * 60 * 12: if isinstance(last_reindex, int) and now - last_reindex > 60 * 60 * 24:
return return
# continue if needed # continue if needed
reindex_handler = Reindex() reindex_handler = Reindex()

Loading…
Cancel
Save