From d0070db67a8714fa84455103888b2c9cf6ea8784 Mon Sep 17 00:00:00 2001 From: arkiver Date: Mon, 4 Oct 2021 21:04:03 +0200 Subject: [PATCH] Version 20211004.01. Do not check facebook.com while down at the moment. --- pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline.py b/pipeline.py index 3c20aa9..e4e8321 100644 --- a/pipeline.py +++ b/pipeline.py @@ -59,7 +59,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 = '20211001.01' +VERSION = '20211004.01' TRACKER_ID = 'reddit' TRACKER_HOST = 'legacy-api.arpa.li' MULTI_ITEM_SIZE = 20 @@ -84,7 +84,7 @@ class CheckIP(SimpleTask): ip_set = set() ip_set.add(socket.gethostbyname('twitter.com')) - ip_set.add(socket.gethostbyname('facebook.com')) + #ip_set.add(socket.gethostbyname('facebook.com')) ip_set.add(socket.gethostbyname('youtube.com')) ip_set.add(socket.gethostbyname('microsoft.com')) ip_set.add(socket.gethostbyname('icanhas.cheezburger.com'))