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 df9330e commit 9f58948Copy full SHA for 9f58948
src/stac_auth_proxy/utils/cache.py
@@ -24,7 +24,7 @@ def __getitem__(self, key: Any) -> Any:
24
25
result, timestamp = self.cache[key]
26
if (time() - timestamp) > self.ttl:
27
- msg = f"{self._key_str(key)} in cache, but expired."
+ msg = f"{self._key_str(key)!r} in cache, but expired."
28
del self.cache[key]
29
logger.debug(msg)
30
raise KeyError(f"{key} expired")
0 commit comments