From 33090c149ee48b01bbd8d559027c32e3c1b435b4 Mon Sep 17 00:00:00 2001 From: NiharDoshi99 <51595473+NiharDoshi99@users.noreply.github.com> Date: Tue, 24 Jan 2023 13:25:16 +0530 Subject: [PATCH] Fix: superset dummy credentials update (#9883) --- .../ingestion/source/metadata/amundsen/metadata.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ingestion/src/metadata/ingestion/source/metadata/amundsen/metadata.py b/ingestion/src/metadata/ingestion/source/metadata/amundsen/metadata.py index 12ccf5c3232..8e99bca4c4f 100644 --- a/ingestion/src/metadata/ingestion/source/metadata/amundsen/metadata.py +++ b/ingestion/src/metadata/ingestion/source/metadata/amundsen/metadata.py @@ -97,8 +97,11 @@ SUPERSET_DEFAULT_CONFIG = { "type": "superset", "serviceConnection": { "config": { - "username": "test", - "password": "test", + "connection": { + "provider": "db", + "username": "test", + "password": "test", + }, "hostPort": "http://localhost:8088", "type": "Superset", }