summary refs log tree commit diff
path: root/synapse/logging/opentracing.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-04-22 18:32:38 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2021-04-22 18:32:38 +0100
commit3c159e5c0cb0f4f7ec30013f23631cbe8a8c76e9 (patch)
tree1ca24d42e63759ad67b9f116afe551677432edbf /synapse/logging/opentracing.py
parentMerge commit '2e537a028' into anoa/dinsic_release_1_31_0 (diff)
parentAdd type hints to E2E handler. (#9232) (diff)
downloadsynapse-3c159e5c0cb0f4f7ec30013f23631cbe8a8c76e9.tar.xz
Merge commit 'a78016dad' into anoa/dinsic_release_1_31_0
Diffstat (limited to 'synapse/logging/opentracing.py')
-rw-r--r--synapse/logging/opentracing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/logging/opentracing.py b/synapse/logging/opentracing.py

index ab586c318c..0538350f38 100644 --- a/synapse/logging/opentracing.py +++ b/synapse/logging/opentracing.py
@@ -791,7 +791,7 @@ def tag_args(func): @wraps(func) def _tag_args_inner(*args, **kwargs): - argspec = inspect.getargspec(func) + argspec = inspect.getfullargspec(func) for i, arg in enumerate(argspec.args[1:]): set_tag("ARG_" + arg, args[i]) set_tag("args", args[len(argspec.args) :])