From 3a2983a9325b87cf74807913b427e40f129aae20 Mon Sep 17 00:00:00 2001 From: Lei PAN Date: Fri, 27 Jun 2025 11:59:57 +0200 Subject: [PATCH] use more thread to validate urls --- workers/link_validator_with_provided_list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workers/link_validator_with_provided_list.py b/workers/link_validator_with_provided_list.py index 44cabf1..684bb18 100644 --- a/workers/link_validator_with_provided_list.py +++ b/workers/link_validator_with_provided_list.py @@ -234,8 +234,8 @@ def validate_all_links(_contact_serial_list): # else: # _segment_number = 1 _thread_list = [] - if len(_first_25_percent_links) >=3: - _segment_number = 3 + if len(_first_25_percent_links) >=10: + _segment_number = 10 else: _segment_number = 1 for i in range(0, _segment_number):