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 5da7c2a commit 984f43dCopy full SHA for 984f43d
lambdas/ack_backend/src/ack_processor.py
@@ -50,11 +50,7 @@ def lambda_handler(event, _):
50
break
51
52
ack_data_rows.append(convert_message_to_ack_row(message, created_at_formatted_string))
53
- # Note: we are only currently receiving failure records.
54
- # Nevertheless, we leave this here pending rewrite of tests (which currently still incorporate
55
- # success records and use "diagnostics" to identify failures).
56
- if message.get("diagnostics"):
57
- increment_records_failed_count(message_id)
+ increment_records_failed_count(message_id)
58
59
update_ack_file(file_key, created_at_formatted_string, ack_data_rows)
60
0 commit comments