diff --git a/ingestion/src/metadata/profiler/orm/functions/length.py b/ingestion/src/metadata/profiler/orm/functions/length.py index 7c078da5fd77..93f7a937ef01 100644 --- a/ingestion/src/metadata/profiler/orm/functions/length.py +++ b/ingestion/src/metadata/profiler/orm/functions/length.py @@ -64,7 +64,7 @@ def _(element, compiler, **kw): @compiles(LenFn, Dialects.ClickHouse) def _(element, compiler, **kw): - """Handles lenght function for ClickHouse""" + """Handles length function for ClickHouse""" if isinstance(element.clauses.clauses[0].type, sqltypes.Enum): return "length(cast(%s, 'String'))" % compiler.process(element.clauses, **kw) return "length(%s)" % compiler.process(element.clauses, **kw) diff --git a/ingestion/src/metadata/utils/importer.py b/ingestion/src/metadata/utils/importer.py index 211610d3762b..781a52c02f99 100644 --- a/ingestion/src/metadata/utils/importer.py +++ b/ingestion/src/metadata/utils/importer.py @@ -59,7 +59,7 @@ def __str__(self): class MissingPluginException(Exception): """ - An excpetion that captures a missing openmetadata-ingestion plugin for a specific connector. + An exception that captures a missing openmetadata-ingestion plugin for a specific connector. """ def __init__(self, plugin: str):