From 43941cde9c2b16cdb1230caaea314de7ece7b411 Mon Sep 17 00:00:00 2001 From: hermeztrismez-rgb Date: Thu, 26 Mar 2026 00:18:19 -0300 Subject: [PATCH 1/2] fix typo --- ingestion/src/metadata/utils/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): From 0b2a225e7e3943fc56fefdece42e6507c716e208 Mon Sep 17 00:00:00 2001 From: hermeztrismez-rgb Date: Thu, 26 Mar 2026 00:20:55 -0300 Subject: [PATCH 2/2] fix typo --- ingestion/src/metadata/profiler/orm/functions/length.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)