summary refs log tree commit diff
path: root/synapse/config/_util.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-04-21 16:16:41 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2021-04-21 16:16:41 +0100
commit64150ac9ba4077cab2b6e97ab1dcc19229005c84 (patch)
tree793a3a3d3cb425f5f30deb68569be7dfa7594307 /synapse/config/_util.py
parentMerge commit '63593134a' into anoa/dinsic_release_1_31_0 (diff)
parentFix "Starting metrics collection from sentinel context" errors (#9053) (diff)
downloadsynapse-64150ac9ba4077cab2b6e97ab1dcc19229005c84.tar.xz
Merge commit 'a03d71dc9' into anoa/dinsic_release_1_31_0
Diffstat (limited to 'synapse/config/_util.py')
-rw-r--r--synapse/config/_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/_util.py b/synapse/config/_util.py

index 1bbe83c317..8fce7f6bb1 100644 --- a/synapse/config/_util.py +++ b/synapse/config/_util.py
@@ -56,7 +56,7 @@ def json_error_to_config_error( """ # copy `config_path` before modifying it. path = list(config_path) - for p in list(e.path): + for p in list(e.absolute_path): if isinstance(p, int): path.append("<item %i>" % p) else: