Commit f884d8fe authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

don't limit lru cache

parent 98a612d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ def _get_project_from_request(request: HttpRequest) -> Union[models.Project, Non
    return None


@lru_cache(10, typed=True)
@lru_cache(None, typed=True)
def _get_rpc_methods() -> dict:
    methods = {}
    for fn_name, _ in getmembers(rpc_methods, isfunction):