This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch 1.5
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 2d7d2dd373ade782427c32a63069a69fcbf18139
Author: Ville Brofeldt <[email protected]>
AuthorDate: Mon Apr 18 14:26:21 2022 +0300

    fix(permalink): remove memoize on get salt func (#19749)
    
    (cherry picked from commit cf5145918ba6da3b8b803bed86ad7ca22d50494a)
---
 superset/key_value/shared_entries.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/superset/key_value/shared_entries.py 
b/superset/key_value/shared_entries.py
index 5dda89a7b3..5f4ded9498 100644
--- a/superset/key_value/shared_entries.py
+++ b/superset/key_value/shared_entries.py
@@ -20,7 +20,6 @@ from uuid import uuid3
 
 from superset.key_value.types import KeyValueResource, SharedKey
 from superset.key_value.utils import get_uuid_namespace, random_key
-from superset.utils.memoized import memoized
 
 RESOURCE = KeyValueResource.APP
 NAMESPACE = get_uuid_namespace("")
@@ -42,7 +41,6 @@ def set_shared_value(key: SharedKey, value: Any) -> None:
     CreateKeyValueCommand(resource=RESOURCE, value=value, key=uuid_key).run()
 
 
-@memoized
 def get_permalink_salt(key: SharedKey) -> str:
     salt = get_shared_value(key)
     if salt is None:

Reply via email to