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 cc59133 commit 3b0c2d7Copy full SHA for 3b0c2d7
lambdas/id_sync/src/record_processor.py
@@ -53,7 +53,7 @@ def process_nhs_number(nhs_number: str) -> Optional[str]:
53
response = ieds_update_patient_id(patient_details_id, nhs_number)
54
else:
55
logger.info("process_nhs_number. No ieds record found for: %s", nhs_number)
56
- response = {"status": "error", "message": f"No records returned for ID: {nhs_number}"}
+ response = {"status": "success", "message": f"No records returned for ID: {nhs_number}"}
57
58
response = {"status": "success", "message": "No update required"}
59
0 commit comments