Skip to content

Commit 9f6b8a1

Browse files
authored
VED-124 Batch Splunk buglet fix (#757)
1 parent 6feebfa commit 9f6b8a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ack_backend/src/update_ack_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def upload_ack_file(
108108
"file_key": file_key,
109109
"supplier": supplier,
110110
"vaccine_type": vaccine_type,
111-
"row_count": row_count_source,
111+
"row_count": row_count_source - 1,
112112
}
113113
else:
114114
result = None

ack_backend/tests/utils/values_for_ack_backend_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class ValidValues:
227227
"file_key": MOCK_MESSAGE_DETAILS.file_key,
228228
"vaccine_type": MOCK_MESSAGE_DETAILS.vaccine_type,
229229
"message_id": MOCK_MESSAGE_DETAILS.row_id,
230-
"row_count": 100,
230+
"row_count": 99,
231231
"statusCode": 200,
232232
"message": "Record processing complete",
233233
}

0 commit comments

Comments
 (0)