mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
Issue-787: sql_source mark entities failed to ingest in warning (#796)
This commit is contained in:
parent
3bf5999224
commit
f43bf000cd
1 changed files with 2 additions and 2 deletions
|
|
@ -246,7 +246,7 @@ class SQLSource(Source):
|
|||
yield table_and_db
|
||||
except Exception as err:
|
||||
logger.error(err)
|
||||
self.status.failures.append(
|
||||
self.status.warnings.append(
|
||||
"{}.{}".format(self.config.service_name, table_name)
|
||||
)
|
||||
continue
|
||||
|
|
@ -304,7 +304,7 @@ class SQLSource(Source):
|
|||
yield table_and_db
|
||||
except Exception as err:
|
||||
logger.error(err)
|
||||
self.status.failures.append(
|
||||
self.status.warnings.append(
|
||||
"{}.{}".format(self.config.service_name, view_name)
|
||||
)
|
||||
continue
|
||||
|
|
|
|||
Loading…
Reference in a new issue