From 8a27002fd33267acdf778a56bd071565f7e20751 Mon Sep 17 00:00:00 2001 From: arkiver Date: Wed, 5 Oct 2022 16:20:17 +0200 Subject: [PATCH] Version 20221005.01. Max tries for backfeed to 10. --- pipeline.py | 2 +- reddit.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline.py b/pipeline.py index cd02b37..bf0e82f 100644 --- a/pipeline.py +++ b/pipeline.py @@ -61,7 +61,7 @@ if not WGET_AT: # # Update this each time you make a non-cosmetic change. # It will be added to the WARC files and reported to the tracker. -VERSION = '20220729.05' +VERSION = '20221005.01' TRACKER_ID = 'reddit' TRACKER_HOST = 'legacy-api.arpa.li' MULTI_ITEM_SIZE = 20 diff --git a/reddit.lua b/reddit.lua index 13f4dd0..0e1b8cd 100644 --- a/reddit.lua +++ b/reddit.lua @@ -674,7 +674,7 @@ end wget.callbacks.finish = function(start_time, end_time, wall_time, numurls, total_downloaded_bytes, total_download_time) local function submit_backfeed(newurls, key) local tries = 0 - local maxtries = 4 + local maxtries = 10 while tries < maxtries do if killgrab then return false