fix(ingest/superset): parse postgres platform correctly (#11540)

This commit is contained in:
Semion Sidorenko 2024-10-14 20:57:38 +02:00 committed by GitHub
parent b74ba11d93
commit 62c39cdcd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -243,6 +243,8 @@ class SupersetSource(StatefulIngestionSourceBase):
return "athena"
if platform_name == "clickhousedb":
return "clickhouse"
if platform_name == "postgresql":
return "postgres"
return platform_name
@lru_cache(maxsize=None)