no need to save links to validate

This commit is contained in:
2022-12-14 09:12:52 +01:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -194,7 +194,7 @@ def read_mails():
if match:
url = match.group(0)
if need_to_valid_url(url, successful_items):
MONGO_STORE_MANAGER.save_links_to_validate(url)
# MONGO_STORE_MANAGER.save_links_to_validate(url)
url_validator = LinkValidator(url)
# print("need to validate url: " + url)
executor.submit(url_validator.start_page, params.get_proxy(ProxyType.OXYLABS), True)
+1
View File
@@ -101,6 +101,7 @@ class ReserveResultPojo:
u'slot_position': self.slot_position,
u'ccid': self.ccid,
u'source_from': self.source_from,
u'created_at': self.created_at,
u'store_type': self.store_type,
u'accepted': self.accepted,
u'url_validated': self.url_validated,