You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte_cdk/sources/file_based/exceptions.py
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ class FileBasedSourceError(Enum):
23
23
"The provided schema could not be transformed into valid JSON Schema."
24
24
)
25
25
ERROR_VALIDATING_RECORD="One or more records do not pass the schema validation policy. Please modify your input schema, or select a more lenient validation policy."
26
+
ERROR_VALIDATION_STREAM_DISCOVERY_OPTIONS="Only one of options 'Schemaless', 'Input Schema', 'Files To Read For Schema Discover' or 'Use First Found File For Schema Discover' can be provided at the same time."
26
27
ERROR_PARSING_RECORD_MISMATCHED_COLUMNS="A header field has resolved to `None`. This indicates that the CSV has more rows than the number of header fields. If you input your schema or headers, please verify that the number of columns corresponds to the number of columns in your CSV's rows."
27
28
ERROR_PARSING_RECORD_MISMATCHED_ROWS="A row's value has resolved to `None`. This indicates that the CSV has more columns in the header field than the number of columns in the row(s). If you input your schema or headers, please verify that the number of columns corresponds to the number of columns in your CSV's rows."
28
29
STOP_SYNC_PER_SCHEMA_VALIDATION_POLICY="Stopping sync in accordance with the configured validation policy. Records in file did not conform to the schema."
0 commit comments