Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions metadata-ingestion/src/datahub/ingestion/source/s3/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,9 +734,9 @@ def ingest_table(
platformSchema=OtherSchemaClass(rawSchema=""),
)
aspects.append(schema_metadata)
except Exception as e:
logger.error(
f"Failed to extract schema from file {table_data.full_path}. The error was:{e}"
except Exception:
self.report.report_warning(
"Failed to extract schema from file {table_data.full_path}. The error was:{e}"
)
else:
logger.info(
Expand Down
Loading