We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61b9547 commit 76a09d4Copy full SHA for 76a09d4
src/webapp/databricks.py
@@ -89,8 +89,8 @@ def _sha256_json(obj: Any) -> str:
89
).hexdigest()
90
91
92
-L1_RESP_CACHE_TTL = int("120") # seconds
93
-L1_VER_CACHE_TTL = int("60") # seconds
+L1_RESP_CACHE_TTL = int("600") # seconds
+L1_VER_CACHE_TTL = int("3600") # seconds
94
L1_RESP_CACHE = TTLCache(maxsize=128, ttl=L1_RESP_CACHE_TTL)
95
L1_VER_CACHE = TTLCache(maxsize=256, ttl=L1_VER_CACHE_TTL)
96
_L1_LOCK = threading.RLock()
0 commit comments