Fix the query.

Missing the where clause to join the two tables.... OOPS
This commit is contained in:
Rebecca Law
2019-11-07 10:57:31 +00:00
parent 43c0122dd0
commit 559faf3034
3 changed files with 19 additions and 11 deletions

View File

@@ -245,5 +245,5 @@ def check_for_missing_rows_in_completed_jobs():
recipient_csv, template = get_recipient_csv_and_template(job)
for row in recipient_csv.get_rows():
if row.index == row_to_process.missing_row:
current_app.logger.info("Processing row: {} for job: {}")
current_app.logger.info("Processing missing row: {} for job: {}")
process_row(row, template, job, job.service)