Skip to content

Commit

Permalink
Bump up size of lru_cache
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdabbad00 committed Sep 6, 2022
1 parent dad4197 commit b9de27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parliament/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def is_glob_match(s1, s2):
return s1[0] == s2[0] and is_glob_match(s1[1:], s2[1:])


@functools.lru_cache(maxsize=1024)
@functools.lru_cache(maxsize=10240)
def expand_action(action, raise_exceptions=True):
"""
Converts "iam:*List*" to
Expand Down

0 comments on commit b9de27d

Please sign in to comment.