diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-10-31 16:16:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-31 20:16:17 +0000 |
commit | ed1b8795766e71416d6955412f782f4960547ccc (patch) | |
tree | b616b06616675db3aed0f18178fe9fc84b22b7a3 /synapse | |
parent | Remove remaining usage of cursor_to_dict. (#16564) (diff) | |
download | synapse-ed1b8795766e71416d6955412f782f4960547ccc.tar.xz |
Do not call getfullargspec on every call. (#16589)
getfullargspec is relatively expensive and the results will not change between calls, so precalculate it outside the wrapper.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/logging/opentracing.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/logging/opentracing.py b/synapse/logging/opentracing.py index 4454fe29a5..e297fa9c8b 100644 --- a/synapse/logging/opentracing.py +++ b/synapse/logging/opentracing.py @@ -1019,11 +1019,14 @@ def tag_args(func: Callable[P, R]) -> Callable[P, R]: if not opentracing: return func + # getfullargspec is somewhat expensive, so ensure it is only called a single + # time (the function signature shouldn't change anyway). + argspec = inspect.getfullargspec(func) + @contextlib.contextmanager def _wrapping_logic( - func: Callable[P, R], *args: P.args, **kwargs: P.kwargs + _func: Callable[P, R], *args: P.args, **kwargs: P.kwargs ) -> Generator[None, None, None]: - argspec = inspect.getfullargspec(func) # We use `[1:]` to skip the `self` object reference and `start=1` to # make the index line up with `argspec.args`. # |