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 ea691fd commit c0908d0Copy full SHA for c0908d0
lambdas/filenameprocessor/src/file_validation.py
@@ -60,7 +60,9 @@ def validate_extended_attributes_file_key(file_key: str) -> str:
60
and version == VALID_EA_VERSIONS
61
and supplier # Note that if supplier could be identified, this also implies that ODS code is valid
62
and is_valid_datetime(timestamp)
63
- and ((extension == "CSV") or (extension == "DAT")) # The DAT extension has been added for MESH file processing
+ and (
64
+ (extension == "CSV") or (extension == "DAT") or (extension == "CTL")
65
+ ) # The DAT extension has been added for MESH file processing
66
):
67
raise InvalidFileKeyError("Initial file validation failed: invalid file key")
68
0 commit comments