diff options
author | David Robertson <davidr@element.io> | 2022-08-08 16:59:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 16:59:56 +0100 |
commit | 7a199951202f53cef398507439bde306e4833219 (patch) | |
tree | a7859f6a4a8ce68f28b607cda642e7367e9fc154 /changelog.d/13467.misc | |
parent | Support stable identifiers for MSC2285: private read receipts. (#13273) (diff) | |
download | synapse-7a199951202f53cef398507439bde306e4833219.tar.xz |
Correct a misnamed argument in state res v2 (#13467)
In state res v2, we apply two passes of iterative auth checks. The first pass replays power events and events in their auth chains, but only those belonging to the full conflicted set. The source code as written suggests that we want only those belonging to the auth difference (which is a smaller set of events). At runtime we were doing the correct thing anyway, because the only callsite of `_reverse_topological_power_sort` passes in the `full_conflicted_set`. So this really is just a rename.
Diffstat (limited to 'changelog.d/13467.misc')
-rw-r--r-- | changelog.d/13467.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13467.misc b/changelog.d/13467.misc new file mode 100644 index 0000000000..b8b7d65c16 --- /dev/null +++ b/changelog.d/13467.misc @@ -0,0 +1 @@ +Correct a misnamed argument in state res v2 internals. |