mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-08 21:48:22 +00:00
make black (#2475)
Co-authored-by: Mayur SIngal <mayursingal@Mayurs-MacBook-Pro.local>
This commit is contained in:
parent
8db5281f30
commit
a8bdf844dd
@ -117,6 +117,10 @@ class SQLSource(Source[OMetaDatabaseAndTable]):
|
||||
)
|
||||
return True
|
||||
# Catch any errors during profiling init and continue ingestion
|
||||
except ModuleNotFoundError as err:
|
||||
logger.error(
|
||||
f"Profiling not available for this databaseService: {str(err)}"
|
||||
)
|
||||
except Exception as exc: # pylint: disable=broad-except
|
||||
logger.debug(traceback.print_exc())
|
||||
logger.debug(f"Error loading profiler {repr(exc)}")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user