mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-21 14:59:57 +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
|
||||
"""
|
||||
connection_args = service_connection_config.configSource.securityConfig
|
||||
data = fetch_dataframe(
|
||||
config_source=service_connection_config.configSource,
|
||||
client=client,
|
||||
@ -96,6 +97,7 @@ class PandasInterfaceMixin:
|
||||
key=table.name.__root__, bucket_name=table.databaseSchema.name
|
||||
),
|
||||
is_profiler=True,
|
||||
connection_kwargs=connection_args,
|
||||
)
|
||||
if data:
|
||||
random.shuffle(data)
|
||||
|
Loading…
x
Reference in New Issue
Block a user