mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-22 15:32:48 +00:00
fix connection kwargs error in profiler (#12181)
This commit is contained in:
parent
a6306e1ca4
commit
81a152140c
@ -89,6 +89,7 @@ class PandasInterfaceMixin:
|
|||||||
"""
|
"""
|
||||||
returns sampled ometa dataframes
|
returns sampled ometa dataframes
|
||||||
"""
|
"""
|
||||||
|
connection_args = service_connection_config.configSource.securityConfig
|
||||||
data = fetch_dataframe(
|
data = fetch_dataframe(
|
||||||
config_source=service_connection_config.configSource,
|
config_source=service_connection_config.configSource,
|
||||||
client=client,
|
client=client,
|
||||||
@ -96,6 +97,7 @@ class PandasInterfaceMixin:
|
|||||||
key=table.name.__root__, bucket_name=table.databaseSchema.name
|
key=table.name.__root__, bucket_name=table.databaseSchema.name
|
||||||
),
|
),
|
||||||
is_profiler=True,
|
is_profiler=True,
|
||||||
|
connection_kwargs=connection_args,
|
||||||
)
|
)
|
||||||
if data:
|
if data:
|
||||||
random.shuffle(data)
|
random.shuffle(data)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user