From 62f4b4f378312f766961c480beaca75a295b9fa5 Mon Sep 17 00:00:00 2001 From: Lei PAN Date: Fri, 6 Sep 2024 22:22:47 +0200 Subject: [PATCH] use 80 threads --- scheduler_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scheduler_test.py b/scheduler_test.py index 220165f..3cbd091 100644 --- a/scheduler_test.py +++ b/scheduler_test.py @@ -6,11 +6,11 @@ from request_sender_test import send_request_for_file_list def start_book_appointment(): - file_list = ['~/Desktop/contact_list_2024-08-28.xlsx', + file_list = ['~/Desktop/contact_list_2024-09-06.xlsx', '~/Desktop/contact_list_all.xlsx', '~/Desktop/contact_list_2024-05-27.xlsx'] - send_request_for_file_list(file_list=file_list, thread_number=75, - data_queue_name=MORNING_DATA_CACHE, stop_at_hour=11, stop_at_mins=30) + send_request_for_file_list(file_list=file_list, thread_number=80, + data_queue_name=MORNING_DATA_CACHE, stop_at_hour=11, stop_at_mins=20) def start_check_results_job(sched):