feat(key-value): add superset metastore cache (#19232)

(cherry picked from commit 72b9a7fa5b)
This commit is contained in:
Ville Brofeldt
2022-03-21 19:46:56 +02:00
committed by Ville Brofeldt
parent 81a1abfab4
commit f3172010d5
17 changed files with 540 additions and 45 deletions

View File

@@ -44,7 +44,7 @@ class GetExplorePermalinkCommand(BaseExplorePermalinkCommand):
self.validate()
try:
value: Optional[ExplorePermalinkValue] = GetKeyValueCommand(
self.resource, self.key, key_type=self.key_type
resource=self.resource, key=self.key, key_type=self.key_type
).run()
if value:
chart_id: Optional[int] = value.get("chartId")