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

@@ -49,7 +49,10 @@ class CreateExplorePermalinkCommand(BaseExplorePermalinkCommand):
"state": self.state,
}
command = CreateKeyValueCommand(
self.actor, self.resource, value, self.key_type
actor=self.actor,
resource=self.resource,
value=value,
key_type=self.key_type,
)
return command.run()
except SQLAlchemyError as ex: