Skip to content

Commit 61f23c8

Browse files
committed
fix recursion issue
1 parent f0cb5f1 commit 61f23c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lambdas/shared/src/common/validator/validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def validate_fhir_json(
159159
) -> list[ErrorReport]:
160160
self.data_type = DataType.FHIRJSON
161161
self.json_data = json_data
162-
return self.validate_fhir_json(json_data, summarise, report_unexpected_exception, inc_header_in_row_count)
162+
return self.run_validation(json_data, summarise, report_unexpected_exception, inc_header_in_row_count)
163163

164164
# run the validation against the data
165165
def run_validation(

0 commit comments

Comments
 (0)