Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit 02fc6fe

Browse files
fastapi: fix unintentional removal
1 parent 0497f15 commit 02fc6fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metadata_service/adapter/datastore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _get_draft_metadata_all() -> dict:
3333
return json.load(f)
3434

3535

36-
@lru_cache
36+
@lru_cache(maxsize=32)
3737
def _get_versioned_metadata_all(version: Version) -> dict:
3838
file_version = version.to_3_underscored()
3939
metadata_all_file_path = (

0 commit comments

Comments
 (0)