We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d00bcb7 commit cb084b8Copy full SHA for cb084b8
1 file changed
rest_api/rest_api_server/utils.py
@@ -11,6 +11,7 @@
11
from concurrent.futures import ThreadPoolExecutor
12
from datetime import datetime
13
from decimal import Decimal
14
+from functools import cache
15
from string import ascii_letters, digits
16
from urllib.parse import urlencode
17
@@ -523,6 +524,7 @@ def get_root_directory_path():
523
524
return os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
525
526
527
+@cache
528
def _get_encryption_salt():
529
return Config().client.encryption_salt()
530
0 commit comments