Skip to content

Commit ef8f91a

Browse files
authored
Merge pull request #47 from CBIIT/Hot-fix-duplicate-ID-error
Hot fix duplicate id error
2 parents 892affc + 454914b commit ef8f91a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/file_validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def validate_file_id(self, id, line_num):
226226
else:
227227
if self.has_file_id:
228228
msg = f'Line {line_num}: "{id_field_name}" is required but not provided. You can provide correct "{id_field_name}" or remove the column and let the system generate it for you.'
229-
self.log.error(msg)
229+
# self.log.error(msg)
230230
return False, msg
231231

232232
return True, None

0 commit comments

Comments
 (0)