Skip to content

Commit

Permalink
Fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nss10 committed Mar 11, 2025
1 parent ca4de94 commit b370e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sheepdog/auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def authorize_and_call(*args, **kwargs):


@timeit
@functools.lrucache(maxsize=5)
@functools.lru_cache(maxsize=5)
def authorize(program, project, roles):
resource = "/programs/{}/projects/{}".format(program, project)
jwt = get_jwt_from_header()
Expand Down

0 comments on commit b370e8a

Please sign in to comment.