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 ac69045 commit 6a07515Copy full SHA for 6a07515
lambdas/id_sync/src/record_processor.py
@@ -15,6 +15,7 @@ def process_record(event_record: AwsLambdaSqsEventRecord):
15
id = get_id(event_record.body)
16
17
if id:
18
+ # TODO This code is a placeholder for checking if records exist in the database - defaulting to True for now
19
exists = check_records_exist(id)
20
21
if exists:
@@ -39,7 +40,7 @@ def process_record(event_record: AwsLambdaSqsEventRecord):
39
40
def check_records_exist(id: str) -> bool:
41
# TODO: Implement logic to check if records exist in the database
42
logger.info(f"TODO Check if records exist for {id}")
- return False
43
+ return True
44
45
46
def update_patient_index(old_id: str, new_id: str):
0 commit comments