Merge branch 'refs/heads/feature/stop_process'

This commit is contained in:
2024-05-22 23:55:55 +02:00
2 changed files with 7 additions and 4 deletions
+4 -2
View File
@@ -94,9 +94,11 @@ def send_request_for_file_list(file_list: list[str], thread_number: int = 20, da
if __name__ == '__main__': if __name__ == '__main__':
file_list = ['~/Desktop/contact_list_2024-05-19.xlsx', '~/Desktop/contact_list_2024-05-17.xlsx', file_list = ['~/Desktop/contact_list_2024-05-21.xlsx',
'~/Desktop/contact_list_2024-05-20.xlsx',
'~/Desktop/contact_list_2024-05-19.xlsx',
'~/Desktop/15_05_to_test.xlsx'] '~/Desktop/15_05_to_test.xlsx']
# file_list = ['~/Desktop/15_05_to_test.xlsx', '~/Desktop/16_05_to_test.xlsx'] # file_list = ['~/Desktop/15_05_to_test.xlsx', '~/Desktop/16_05_to_test.xlsx']
# file_list = ['~/Desktop/contact_all_old.xlsx'] # file_list = ['~/Desktop/contact_all_old.xlsx']
send_request_for_file_list(file_list=file_list, thread_number=32, send_request_for_file_list(file_list=file_list, thread_number=30,
data_queue_name=MORNING_DATA_CACHE) data_queue_name=MORNING_DATA_CACHE)
+3 -2
View File
@@ -6,8 +6,9 @@ from request_sender_test import send_request_for_file_list
def start_book_appointment(): def start_book_appointment():
file_list = ['~/Desktop/contact_list_2024-05-19.xlsx', file_list = ['~/Desktop/contact_list_2024-05-21.xlsx',
'~/Desktop/contact_list_2024-05-17.xlsx', '~/Desktop/contact_list_2024-05-20.xlsx',
'~/Desktop/contact_list_2024-05-19.xlsx',
'~/Desktop/15_05_to_test.xlsx'] '~/Desktop/15_05_to_test.xlsx']
send_request_for_file_list(file_list=file_list, thread_number=32, send_request_for_file_list(file_list=file_list, thread_number=32,
data_queue_name=MORNING_DATA_CACHE) data_queue_name=MORNING_DATA_CACHE)