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.
2 parents 3ff4e07 + f7d934f commit 59b344fCopy full SHA for 59b344f
src/DIRAC/FrameworkSystem/Utilities/diracx.py
@@ -61,7 +61,7 @@ def get_token(
61
62
@cached(
63
TTLCache(maxsize=DEFAULT_TOKEN_CACHE_SIZE, ttl=DEFAULT_TOKEN_CACHE_TTL),
64
- key=lambda a, b, c: hashkey(a, b, *sorted(c)),
+ key=lambda a, b, c, **_: hashkey(a, b, *sorted(c)),
65
)
66
def _get_token_file(username: str, group: str, dirac_properties: set[str], *, source: str = "") -> Path:
67
"""Write token to a temporary file and return the path to that file"""
0 commit comments