diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-07-25 08:34:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 08:34:06 -0400 |
commit | 908aeac44ab3acc1c42fd6c33ef716ddf51142a7 (patch) | |
tree | a2ff79796191bc95a966a943ef6ca2c3ae4d539d /synapse/logging/opentracing.py | |
parent | Refactor presence so we can prune user in room caches (#13313) (diff) | |
download | synapse-908aeac44ab3acc1c42fd6c33ef716ddf51142a7.tar.xz |
Additional fixes for opentracing type hints. (#13362)
Diffstat (limited to '')
-rw-r--r-- | synapse/logging/opentracing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/logging/opentracing.py b/synapse/logging/opentracing.py index ad5cbf46a4..c1aa205eed 100644 --- a/synapse/logging/opentracing.py +++ b/synapse/logging/opentracing.py @@ -910,8 +910,8 @@ def tag_args(func: Callable[P, R]) -> Callable[P, R]: def _tag_args_inner(*args: P.args, **kwargs: P.kwargs) -> R: argspec = inspect.getfullargspec(func) for i, arg in enumerate(argspec.args[1:]): - set_tag("ARG_" + arg, args[i]) # type: ignore[index] - set_tag("args", args[len(argspec.args) :]) # type: ignore[index] + set_tag("ARG_" + arg, str(args[i])) # type: ignore[index] + set_tag("args", str(args[len(argspec.args) :])) # type: ignore[index] set_tag("kwargs", str(kwargs)) return func(*args, **kwargs) |