We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8e6001 commit b08d895Copy full SHA for b08d895
utils/batch_processing.py
@@ -79,8 +79,10 @@ def batch_processing(
79
80
check_batch_in_archived_batch_list(page, link_text)
81
82
- first_nhs_no = nhs_no_df["subject_nhs_number"].iloc[0]
83
- verify_subject_event_status_by_nhs_no(page, first_nhs_no, latest_event_status)
+ for subject in range(len(nhs_no_df)):
+ nhs_no = nhs_no_df["subject_nhs_number"].iloc[subject]
84
+ logging.info(f"Verifying the event status for subject: {nhs_no}")
85
+ verify_subject_event_status_by_nhs_no(page, nhs_no, latest_event_status)
86
87
if run_timed_events:
88
OracleDB().exec_bcss_timed_events(nhs_no_df)
0 commit comments